From e5a7346ca0db051af0ec44dc1ab14a5103d9a173 Mon Sep 17 00:00:00 2001 From: Tigran Mkrtchyan Date: Tue, 17 Sep 2024 15:27:12 +0200 Subject: [PATCH] print some useful information when started --- templates/NOTES.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/templates/NOTES.txt b/templates/NOTES.txt index a4782ae..3b0477c 100644 --- a/templates/NOTES.txt +++ b/templates/NOTES.txt @@ -11,3 +11,17 @@ Y88b 888 Y88b d88P 888 888 Y88b. 888 888 Y8b. + +Get the list of pods by executing: + + kubectl get pods --namespace {{ .Release.Namespace }} -l app.kubernetes.io/instance={{ .Release.Name }} + + +Access the pod you want to debug by executing + + kubectl exec --namespace {{ .Release.Namespace }} -ti -- /bin/sh + + +Access frontend service by running these commands: + + kubectl port-forward --namespace {{ .Release.Namespace }} svc/{{ .Release.Name }}-door-svc 3881:{{ .Values.services.frontends.port }} & \ No newline at end of file