Skip to content

Commit e5a7346

Browse files
committed
print some useful information when started
1 parent 94f0357 commit e5a7346

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

templates/NOTES.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,17 @@ Y88b 888 Y88b d88P 888 888 Y88b. 888 888 Y8b.
1111

1212

1313

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

Comments
 (0)