NOTES.txt 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. {{/*
  2. Licensed to the Apache Software Foundation (ASF) under one or more
  3. contributor license agreements. See the NOTICE file distributed with
  4. this work for additional information regarding copyright ownership.
  5. The ASF licenses this file to You under the Apache License, Version 2.0
  6. (the "License"); you may not use this file except in compliance with
  7. the License. You may obtain a copy of the License at
  8. http://www.apache.org/licenses/LICENSE-2.0
  9. Unless required by applicable law or agreed to in writing, software
  10. distributed under the License is distributed on an "AS IS" BASIS,
  11. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. See the License for the specific language governing permissions and
  13. limitations under the License.
  14. */}}
  15. 1. Get the application URL by running these commands:
  16. {{- if .Values.ingress.enabled }}
  17. {{- range .Values.ingress.hosts }}
  18. http{{ if $.Values.ingress.tls }}s{{ end }}://{{ . }}{{ $.Values.ingress.path }}
  19. {{- end }}
  20. {{- else if contains "NodePort" .Values.service.type }}
  21. export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ template "superset.fullname" . }})
  22. export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}")
  23. echo http://$NODE_IP:$NODE_PORT
  24. {{- else if contains "LoadBalancer" .Values.service.type }}
  25. NOTE: It may take a few minutes for the LoadBalancer IP to be available.
  26. You can watch the status of by running 'kubectl get svc -w {{ template "superset.fullname" . }}'
  27. export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ template "superset.fullname" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}')
  28. echo http://$SERVICE_IP:{{ .Values.service.port }}
  29. {{- else if contains "ClusterIP" .Values.service.type }}
  30. echo "Visit http://127.0.0.1:8088 to use your application"
  31. kubectl port-forward service/superset 8088:8088 --namespace {{ .Release.Namespace }}
  32. {{- end }}