NOTES.txt 800 B

123456789101112131415161718192021222324252627282930
  1. Congratulations, you've launched the Cloudera Data Warehouse!
  2. To check the status of your installation run:
  3. helm list {{ .Release.Name }}
  4. You should be able to execute queries via:
  5. kubectl port-forward svc/hue 8888:8888 &
  6. http://localhost:8888
  7. Or directly:
  8. export WEB_HOST=$(kubectl get node -o jsonpath="{.items[0].metadata.name}")
  9. export WEB_PORT=$(kubectl get service hue -o jsonpath="{.spec.ports[*].nodePort}" --namespace {{ .Release.Namespace }})
  10. echo http://$WEB_HOST:$WEB_PORT
  11. The REST API is available at:
  12. export API_HOST=$(kubectl get node -o jsonpath="{.items[0].metadata.name}")
  13. export API_PORT=$(kubectl get service provisioner -o jsonpath="{.spec.ports[*].nodePort}" --namespace {{ .Release.Namespace }})
  14. echo http://$API_HOST:$API_PORT
  15. Happy Querying!