Fix NOTES.txt
This commit is contained in:
parent
ba035ffc09
commit
c7a4b55b25
@ -7,19 +7,33 @@ To learn more about the release, try:
|
||||
$ helm status {{ .Release.Name }}
|
||||
$ helm get all {{ .Release.Name }}
|
||||
|
||||
{{- if .Values.ingress.enabled }}
|
||||
{{- if or .Values.frontend.ingress.enabled .Values.backend.ingress.enabled }}
|
||||
|
||||
Calink is accessible at:
|
||||
{{- range .Values.ingress.hosts }}
|
||||
http{{ if $.Values.ingress.tls }}s{{ end }}://{{ .host }}
|
||||
|
||||
{{- 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 frontend port:
|
||||
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 http://localhost:8080
|
||||
Then visit:
|
||||
Frontend: http://localhost:8080
|
||||
Backend: http://localhost:8000
|
||||
{{- end }}
|
||||
|
||||
Backend API documentation is available at:
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user