NOTES.txt 916 B

123456789101112131415161718192021222324252627282930
  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. echo https://{{ .Values.docs.domain }}
  13. {{ else }}
  14. export WEBSITE_PORT=$(kubectl get service website -o jsonpath="{.spec.ports[*].nodePort}" --namespace {{ .Release.Namespace }})
  15. export DOCS_PORT=$(kubectl get service docs -o jsonpath="{.spec.ports[*].nodePort}" --namespace {{ .Release.Namespace }})
  16. echo http://$WEB_HOST:$WEBSITE_PORT
  17. echo http://$WEB_HOST:$DOCS_PORT
  18. {{ end }}
  19. Happy Querying!