NOTES.txt 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. Congratulations, you've launched the website of Hue!
  2. To check the status of your installation run:
  3. helm list --filter {{ .Release.Name }}
  4. Run below commands to get the recommended URLs:
  5. {{ if true }}
  6. export WEB_HOST=$(kubectl get node -o jsonpath="{.items[0].metadata.name}")
  7. {{- end -}}
  8. {{ if and .Values.ingress.create (eq .Values.ingress.type "nginx") }}
  9. echo http://$WEB_HOST
  10. {{ else if and .Values.ingress.create (eq .Values.ingress.type "nginx-ssl") }}
  11. {{ if .Values.website.enabled }}
  12. echo https://{{ .Values.website.domain }}
  13. {{- end -}}
  14. {{ if .Values.website.jp.enabled }}
  15. echo https://{{ .Values.website.domain }}
  16. {{- end -}}
  17. {{ if .Values.docs.enabled }}
  18. echo https://{{ .Values.docs.domain }}
  19. {{- end -}}
  20. {{ else }}
  21. export WEBSITE_PORT=$(kubectl get service website -o jsonpath="{.spec.ports[*].nodePort}" --namespace {{ .Release.Namespace }})
  22. export DOCS_PORT=$(kubectl get service docs -o jsonpath="{.spec.ports[*].nodePort}" --namespace {{ .Release.Namespace }})
  23. echo http://$WEB_HOST:$WEBSITE_PORT
  24. {{- if .Values.docs.enabled -}}
  25. echo http://$WEB_HOST:$DOCS_PORT
  26. {{ end }}
  27. {{ end }}
  28. Happy Querying!