Skip to content

Commit

Permalink
print some useful information when started
Browse files Browse the repository at this point in the history
  • Loading branch information
kofemann committed Sep 17, 2024
1 parent 94f0357 commit e5a7346
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions templates/NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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 <NAME OF THE POD> -- /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 }} &

0 comments on commit e5a7346

Please sign in to comment.