mirror of
https://github.com/bitnami/charts.git
synced 2026-03-13 14:57:24 +08:00
* Update template with latest standardisation changes Signed-off-by: Fran Mulero <fmulero@vmware.com> * Don't set number of replicas if autoscaling is enabled Signed-off-by: Fran Mulero <fmulero@vmware.com>
34 lines
1.3 KiB
Plaintext
34 lines
1.3 KiB
Plaintext
CHART NAME: {{ .Chart.Name }}
|
|
CHART VERSION: {{ .Chart.Version }}
|
|
APP VERSION: {{ .Chart.AppVersion }}
|
|
|
|
** 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 {{ include "common.names.namespace" . | quote }} -l app.kubernetes.io/instance={{ .Release.Name }}
|
|
|
|
Access the pod you want to debug by executing
|
|
|
|
kubectl exec --namespace {{ include "common.names.namespace" . | quote }} -ti <NAME OF THE POD> -- bash
|
|
|
|
In order to replicate the container startup scripts execute this command:
|
|
|
|
%%ENTRYPOINT and CMD from main container%%
|
|
|
|
{{- else }}
|
|
|
|
%%Instructions to access the application depending on the serviceType and other considerations%%
|
|
|
|
{{- end }}
|
|
|
|
{{- include "common.warnings.rollingTag" .Values.%%MAIN_OBJECT_BLOCK%%.image }}
|
|
{{- include "common.warnings.rollingTag" .Values.%%OTHER_OBJECT_BLOCK%%.image }}
|
|
{{- include "%%TEMPLATE_NAME%%.validateValues" . }}
|