This commit is contained in:
Waylon S. Walker 2025-02-23 09:34:01 -06:00
parent 5507c7c7dc
commit 01e146db7c
6 changed files with 129 additions and 8 deletions

View file

@ -0,0 +1,23 @@
Thank you for installing {{ .Chart.Name }}.
Your application has been deployed with the following configuration:
- Name: {{ .Values.name }}
- Domain: {{ .Values.domain }}
- Port: {{ .Values.port }}
To access your application:
https://{{ .Values.name }}.{{ .Values.domain }}
To check the status of your pods:
kubectl get pods -n {{ .Values.namespace | default .Values.name }} -l service={{ .Values.name }}
To view the logs:
kubectl logs -n {{ .Values.namespace | default .Values.name }} -l service={{ .Values.name }}
For troubleshooting:
1. Check pod status:
kubectl describe pod -n {{ .Values.namespace | default .Values.name }} -l service={{ .Values.name }}
2. Check ingress status:
kubectl describe ingress -n {{ .Values.namespace | default .Values.name }} {{ .Values.name }}
3. Check service status:
kubectl describe service -n {{ .Values.namespace | default .Values.name }} {{ .Values.name }}