
Congratulations, you've launched the website of Hue!

To check the status of your installation run:

  helm list --filter {{ .Release.Name }}

Run below commands to get the recommended URLs:
{{ if true }}
  export WEB_HOST=$(kubectl get node -o jsonpath="{.items[0].metadata.name}")
{{- end -}}

{{ if and .Values.ingress.create (eq .Values.ingress.type "nginx") }}

  echo http://$WEB_HOST

{{ else if and .Values.ingress.create (eq .Values.ingress.type "nginx-ssl") }}

  {{ if .Values.website.enabled }}
  echo https://{{ .Values.website.domain }}
  {{- end -}}
  {{ if .Values.website.jp.enabled }}
  echo https://{{ .Values.website.domain }}
  {{- end -}}
  {{ if .Values.docs.enabled }}
  echo https://{{ .Values.docs.domain }}
  {{- end -}}

{{ else }}

  export WEBSITE_PORT=$(kubectl get service website -o jsonpath="{.spec.ports[*].nodePort}" --namespace {{ .Release.Namespace }})
  export DOCS_PORT=$(kubectl get service docs -o jsonpath="{.spec.ports[*].nodePort}" --namespace {{ .Release.Namespace }})

  echo http://$WEB_HOST:$WEBSITE_PORT
  {{- if .Values.docs.enabled -}}
  echo http://$WEB_HOST:$DOCS_PORT
  {{ end }}
{{ end }}
Happy Querying!
