We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94f0357 commit e5a7346Copy full SHA for e5a7346
templates/NOTES.txt
@@ -11,3 +11,17 @@ Y88b 888 Y88b d88P 888 888 Y88b. 888 888 Y8b.
11
12
13
14
+
15
+Get the list of pods by executing:
16
17
+ kubectl get pods --namespace {{ .Release.Namespace }} -l app.kubernetes.io/instance={{ .Release.Name }}
18
19
20
+Access the pod you want to debug by executing
21
22
+ kubectl exec --namespace {{ .Release.Namespace }} -ti <NAME OF THE POD> -- /bin/sh
23
24
25
+Access frontend service by running these commands:
26
27
+ kubectl port-forward --namespace {{ .Release.Namespace }} svc/{{ .Release.Name }}-door-svc 3881:{{ .Values.services.frontends.port }} &
0 commit comments