|
1 | | -Your {{ .Chart.Name }} chart has been installed successfully! |
| 1 | +π {{ .Chart.Name }} v{{ .Chart.Version }} deployed successfully! |
2 | 2 |
|
3 | | -To get more information about your deployment, run: |
| 3 | +ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ |
4 | 4 |
|
5 | | - kubectl get deployment {{ .Release.Name }}-{{ .Chart.Name }} |
| 5 | +π¦ DEPLOYMENT STATUS |
6 | 6 |
|
7 | | -To check the status of your pods, run: |
| 7 | + kubectl get deployment {{ include "fullname" . }} -n {{ .Release.Namespace }} |
| 8 | + kubectl get pods -l app=wik-webservice,release={{ .Release.Name }} -n {{ .Release.Namespace }} |
8 | 9 |
|
9 | | - kubectl get pods -l app.kubernetes.io/name={{ .Chart.Name }},app.kubernetes.io/instance={{ .Release.Name }} |
| 10 | +{{- if .Values.webservice.hosts }} |
10 | 11 |
|
11 | | -To access your service, check the ingress details: |
| 12 | +π INGRESS |
| 13 | +{{- range .Values.webservice.hosts }} |
| 14 | + https://{{ . }} |
| 15 | +{{- end }} |
12 | 16 |
|
13 | | - kubectl get ingress {{ .Release.Name }}-{{ .Chart.Name }} |
| 17 | + kubectl get ingress {{ include "fullname" $ }} -n {{ $.Release.Namespace }} |
| 18 | +{{- end }} |
14 | 19 |
|
15 | | -For more information on using the chart, see the documentation at: |
16 | | -https://github.com/wikodit/charts/tree/main/charts/{{ .Chart.Name }} |
| 20 | +{{- if .Values.webservice.service.enabled }} |
| 21 | + |
| 22 | +π SERVICE |
| 23 | + |
| 24 | + kubectl get svc {{ include "fullname" . }} -n {{ .Release.Namespace }} |
| 25 | +{{- end }} |
| 26 | + |
| 27 | +{{- if .Values.webservice.metrics.enabled }} |
| 28 | + |
| 29 | +π METRICS |
| 30 | + |
| 31 | + Metrics endpoint: :{{ .Values.webservice.metrics.port }}{{ .Values.webservice.metrics.path }} |
| 32 | +{{- end }} |
| 33 | + |
| 34 | +{{- if .Values.serviceMonitor.enabled }} |
| 35 | + |
| 36 | + ServiceMonitor enabled for Prometheus scraping |
| 37 | +{{- end }} |
| 38 | + |
| 39 | +{{- if .Values.webservice.hpa.enabled }} |
| 40 | + |
| 41 | +βοΈ AUTOSCALING |
| 42 | + |
| 43 | + HPA enabled (min: {{ .Values.webservice.hpa.minReplicas }}, max: {{ .Values.webservice.hpa.maxReplicas }}) |
| 44 | + kubectl get hpa {{ include "fullname" . }} -n {{ .Release.Namespace }} |
| 45 | +{{- end }} |
| 46 | + |
| 47 | +{{- if .Values.podDisruptionBudget.enabled }} |
| 48 | + |
| 49 | +π‘οΈ POD DISRUPTION BUDGET |
| 50 | + |
| 51 | + kubectl get pdb {{ include "fullname" . }} -n {{ .Release.Namespace }} |
| 52 | +{{- end }} |
| 53 | + |
| 54 | +ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ |
| 55 | + |
| 56 | +π Documentation: https://github.com/wikodit/charts/tree/main/charts/{{ .Chart.Name }} |
0 commit comments