NOTES.txt 709 B

123456789101112131415161718192021222324252627
  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.docs.domain }}
  12. {{ else }}
  13. export WEB_PORT=$(kubectl get service gethue-docs -o jsonpath="{.spec.ports[*].nodePort}" --namespace {{ .Release.Namespace }})
  14. echo http://$WEB_HOST:$WEB_PORT
  15. {{ end }}
  16. Happy Querying!