44 lines
1.0 KiB
Plaintext
44 lines
1.0 KiB
Plaintext
Thank you for installing {{ .Chart.Name }}!
|
|
|
|
Your release is named {{ .Release.Name }}.
|
|
|
|
To learn more about the release, try:
|
|
|
|
$ helm status {{ .Release.Name }}
|
|
$ helm get all {{ .Release.Name }}
|
|
|
|
{{- if or .Values.frontend.ingress.enabled .Values.backend.ingress.enabled }}
|
|
|
|
Calink is accessible at:
|
|
|
|
{{- if .Values.frontend.ingress.enabled }}
|
|
Frontend:
|
|
{{- range .Values.frontend.ingress.hosts }}
|
|
http{{ if $.Values.frontend.ingress.tls }}s{{ end }}://{{ .host }}
|
|
{{- end }}
|
|
{{- end }}
|
|
|
|
{{- if .Values.backend.ingress.enabled }}
|
|
Backend API:
|
|
{{- range .Values.backend.ingress.hosts }}
|
|
http{{ if $.Values.backend.ingress.tls }}s{{ end }}://{{ .host }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- else }}
|
|
|
|
To access Calink, forward the ports:
|
|
|
|
kubectl port-forward svc/{{ include "calink.fullname" . }}-frontend 8080:80
|
|
kubectl port-forward svc/{{ include "calink.fullname" . }}-backend 8000:8000
|
|
|
|
Then visit:
|
|
Frontend: http://localhost:8080
|
|
Backend: http://localhost:8000
|
|
{{- end }}
|
|
|
|
Backend API documentation is available at:
|
|
/docs
|
|
|
|
Health check endpoint:
|
|
/health
|