Files
incidentops/helm/incidentops/templates/NOTES.txt
minhtrannhat 359291eec7 feat: project skeleton
- infra (k8s, kind, helm, docker) backbone is implemented
- security: implementation + unit tests are done
2025-11-21 12:00:00 +00:00

34 lines
1.1 KiB
Plaintext

IncidentOps has been deployed!
{{- if .Values.ingress.enabled }}
Access the application at:
http{{ if $.Values.ingress.tls }}s{{ end }}://{{ .Values.ingress.host }}
{{- else }}
To access the application, run:
API:
kubectl port-forward svc/{{ include "incidentops.fullname" . }}-api {{ .Values.api.service.port }}:{{ .Values.api.service.port }} -n {{ .Release.Namespace }}
Then open: http://localhost:{{ .Values.api.service.port }}
Web:
kubectl port-forward svc/{{ include "incidentops.fullname" . }}-web {{ .Values.web.service.port }}:{{ .Values.web.service.port }} -n {{ .Release.Namespace }}
Then open: http://localhost:{{ .Values.web.service.port }}
{{- end }}
To check the status of your deployment:
kubectl get pods -n {{ .Release.Namespace }} -l "app.kubernetes.io/instance={{ .Release.Name }}"
{{- if .Values.migration.enabled }}
Database migrations will run automatically as a Helm hook.
Check migration status:
kubectl get jobs -n {{ .Release.Namespace }} -l "app.kubernetes.io/component=migration"
{{- end }}
For more information, visit the documentation.