41 lines
1.8 KiB
Plaintext
41 lines
1.8 KiB
Plaintext
*************************************************************************************************
|
|
*** PLEASE BE PATIENT: Kubernetes Dashboard may need a few minutes to get up and become ready ***
|
|
*************************************************************************************************
|
|
|
|
Congratulations! You have just installed Kubernetes Dashboard in your cluster.
|
|
{{ if not (.Values.nginx.enabled) }}
|
|
To access Dashboard run:
|
|
kubectl -n {{ .Release.Namespace }} port-forward svc/{{ .Release.Name }}-kong-proxy 8443:443
|
|
|
|
NOTE: In case port-forward command does not work, make sure that kong service name is correct.
|
|
Check the services in Kubernetes Dashboard namespace using:
|
|
kubectl -n {{ .Release.Namespace }} get svc
|
|
|
|
Dashboard will be available at:
|
|
https://localhost:8443
|
|
{{- end }}
|
|
|
|
{{ if and (has "localhost" .Values.app.ingress.hosts) (eq .Values.app.ingress.ingressClassName "internal-nginx") (.Values.nginx.enabled) }}
|
|
To access Dashboard run:
|
|
kubectl -n {{ .Release.Namespace }} port-forward svc/{{ .Release.Name }}-nginx-controller 8443:443
|
|
|
|
NOTE: In case port-forward command does not work, make sure that nginx service name is correct.
|
|
Check the services in Kubernetes Dashboard namespace using:
|
|
kubectl -n {{ .Release.Namespace }} get svc
|
|
|
|
Dashboard will be available at:
|
|
https://localhost:8443
|
|
{{- end }}
|
|
|
|
{{- if or (not (has "localhost" .Values.app.ingress.hosts)) (gt (len .Values.app.ingress.hosts) 1) }}
|
|
|
|
Looks like you are deploying Kubernetes Dashboard on a custom domain(s).
|
|
Please make sure that the ingress configuration is valid.
|
|
Dashboard should be accessible on your configured domain(s) soon:
|
|
{{- range .Values.app.ingress.hosts }}
|
|
{{- if not (eq . "localhost") }}
|
|
- https://{{ . }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|