Files
charts/template/CHART_NAME/templates/NOTES.txt
Fran Mulero b763ce5f75 [template] Update template with latest standardisation changes (#10105)
* 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>
2022-05-11 09:24:05 +02:00

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" . }}