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