Files
charts/bitnami/discourse/templates/NOTES.txt
Juan Ariza Toledano 82db1c79a8 [bitnami/discourse] Chart standardization (#8991)
* [bitnami/discourse] Chart standardization

Signed-off-by: juan131 <juanariza@vmware.com>

* Update deps

Signed-off-by: juan131 <juanariza@vmware.com>

* Fix NOTES

Signed-off-by: juan131 <juanariza@vmware.com>

* [bitnami/discourse] Update components versions

Signed-off-by: Bitnami Containers <containers@bitnami.com>

Co-authored-by: Bitnami Containers <containers@bitnami.com>
2022-02-22 09:03:32 +01:00

124 lines
5.2 KiB
Plaintext

CHART NAME: {{ .Chart.Name }}
CHART VERSION: {{ .Chart.Version }}
APP VERSION: {{ .Chart.AppVersion }}
{{- $releaseNamespace := .Release.Namespace }}
{{- $clusterDomain := .Values.clusterDomain }}
{{- $fullname := include "common.names.fullname" . }}
{{- $secretName := include "discourse.secretName" . }}
** Please be patient while the chart is being deployed **
{{- if .Values.diagnosticMode.enabled }}
The chart has been deployed in diagnostic mode. All probes have been disabled and the command has been overwritten with:
command: {{- include "common.tplvalues.render" (dict "value" .Values.diagnosticMode.command "context" $) | nindent 4 }}
args: {{- include "common.tplvalues.render" (dict "value" .Values.diagnosticMode.args "context" $) | nindent 4 }}
Get the list of pods by executing:
kubectl get pods --namespace {{ $releaseNamespace }} -l app.kubernetes.io/instance={{ .Release.Name }}
Access the pod you want to debug by executing
kubectl exec --namespace {{ $releaseNamespace }} -ti <NAME OF THE POD> -- bash
In order to replicate the container startup scripts execute this command:
/opt/bitnami/scripts/discourse/entrypoint.sh /opt/bitnami/scripts/discourse/run.sh
{{- else }}
{{- if empty (include "discourse.host" .) }}
###############################################################################
### ERROR: You did not provide an external host in your 'helm install' call ###
###############################################################################
This deployment will be incomplete until you configure Discourse with a resolvable host. To configure Discourse with the URL of your service:
1. Get the discourse URL by running:
{{- if contains "NodePort" .Values.service.type }}
export DISCOURSE_HOST=$(kubectl get nodes --namespace {{ $releaseNamespace }} -o jsonpath="{.items[0].status.addresses[0].address}")
export DISCOURSE_PORT=$(kubectl get svc {{ $fullname }} --namespace {{ $releaseNamespace }} -o jsonpath="{.spec.ports[0].nodePort}")
{{- else if contains "LoadBalancer" .Values.service.type }}
NOTE: It may take a few minutes for the LoadBalancer IP to be available.
Watch the status with: 'kubectl get svc --namespace {{ $releaseNamespace }} -w {{ $fullname }}'
export DISCOURSE_HOST=$(kubectl get svc --namespace {{ $releaseNamespace }} {{ $fullname }} --template "{{ "{{ range (index .status.loadBalancer.ingress 0) }}{{ . }}{{ end }}" }}")
export DISCOURSE_PORT={{ .Values.service.ports.http }}
{{- end }}
2. Complete your Discourse deployment by running:
helm upgrade --namespace {{ $releaseNamespace }} {{ .Release.Name }} bitnami/{{ .Chart.Name }} \
{{- if .Values.global }}
{{- if .Values.global.imagePullSecrets }}
--set global.imagePullSecrets={{ .Values.global.imagePullSecrets }} \
{{- end }}
{{- end }}
--set service.type={{ .Values.service.type }} \
--set host="$DISCOURSE_HOST:$DISCOURSE_PORT"
{{- else -}}
Discourse can be accessed via port {{ .Values.service.ports.http }} on the following DNS name from within your cluster:
{{ printf "%s.%s.svc.%s" $fullname $releaseNamespace $clusterDomain }}
To connect to Discourse from outside the cluster, perform the following steps:
{{- if .Values.ingress.enabled }}
1. Get the Discourse URL and associate its hostname to your cluster external IP:
export CLUSTER_IP=$(minikube ip) # On Minikube. Use: `kubectl cluster-info` on others K8s clusters
echo "Discourse URL: http{{ if .Values.ingress.tls }}s{{ end }}://{{ .Values.ingress.hostname }}"
echo "$CLUSTER_IP {{ .Values.ingress.hostname }}" | sudo tee -a /etc/hosts
{{- else if eq .Values.service.type "ClusterIP" }}
1. Create a port-forward to the service:
kubectl port-forward --namespace {{ $releaseNamespace }} svc/{{ $fullname }} {{ .Values.service.ports.http }}:{{ .Values.service.ports.http }} &
echo "Discourse URL: http://127.0.0.1:{{ .Values.service.ports.http }}"
{{- else if eq .Values.service.type "NodePort" }}
1. Obtain the NodePort IP and port:
export NODE_IP=$(kubectl get nodes --namespace {{ $releaseNamespace }} -o jsonpath="{.items[0].status.addresses[0].address}")
export NODE_PORT=$(kubectl get svc --namespace {{ $releaseNamespace }} {{ $fullname }} -o jsonpath="{.spec.ports[0].nodePort}")
echo "Discourse URL: http://${NODE_IP}:$NODE_PORT"
{{- else if eq .Values.service.type "LoadBalancer" }}
1. Obtain the LoadBalancer IP:
NOTE: It may take a few minutes for the LoadBalancer IP to be available.
Watch the status with: 'kubectl get svc --namespace {{ .Release.Namespace }} -w {{ $fullname }}'
export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ $fullname }} --template "{{ "{{ range (index .status.loadBalancer.ingress 0) }}{{ . }}{{ end }}" }}")
echo "Discourse URL: http://${SERVICE_IP}:{{ .Values.service.ports.http }}"
{{- end }}
2. Open a browser and access Discourse using the obtained URL.
3. Get your Discourse login credentials by running:
{{ include "common.utils.secret.getvalue" (dict "secret" $secretName "field" "discourse-password" "context" $) }}
echo User: {{ .Values.auth.username }}
echo Password: $DISCOURSE_PASSWORD
{{- end }}
{{- end }}
{{- include "common.warnings.rollingTag" .Values.image }}