NOTES.txt 582 B

1234567891011
  1. 1. Get the application URL by running these commands:
  2. {{- if .Values.ingress.enabled }}
  3. {{- range $host := .Values.ingress.hosts }}
  4. {{- range .paths }}
  5. http{{ if $.Values.ingress.tls }}s{{ end }}://{{ $host.host }}{{ . }}
  6. {{- end }}
  7. {{- end }}
  8. {{- end }}
  9. export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/name={{ include "flink.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}")
  10. echo "Visit http://127.0.0.1:8080 to use your application"
  11. kubectl port-forward $POD_NAME 8080:80