NOTES.txt 1010 B

12345678910111213141516171819202122232425262728293031323334
  1. Congratulations, you've launched the website of Hue!
  2. To check the status of your installation run:
  3. helm list {{ .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. echo https://{{ .Values.website.domain }}
  12. {{- if .Values.docs.enabled -}}
  13. echo https://{{ .Values.docs.domain }}
  14. {{- end -}}
  15. {{ else }}
  16. export WEBSITE_PORT=$(kubectl get service website -o jsonpath="{.spec.ports[*].nodePort}" --namespace {{ .Release.Namespace }})
  17. export DOCS_PORT=$(kubectl get service docs -o jsonpath="{.spec.ports[*].nodePort}" --namespace {{ .Release.Namespace }})
  18. echo http://$WEB_HOST:$WEBSITE_PORT
  19. {{- if .Values.docs.enabled -}}
  20. echo http://$WEB_HOST:$DOCS_PORT
  21. {{ end }}
  22. {{ end }}
  23. Happy Querying!