{{ .Chart.Name }} release "{{ .Release.Name }}" installed in namespace "{{ .Release.Namespace }}".

Resources are named {{ .Release.Name }}-<component>. Pods:

  kubectl get pods -n {{ .Release.Namespace }} -l release={{ .Release.Name }}
{{- $hosts := list }}
{{- range $key, $c := .Values }}
{{- if kindIs "map" $c }}
{{- if $c.enabled }}
{{- with $c.ingress }}
{{- if .enabled }}
{{- range .hosts }}
{{- $hosts = append $hosts (printf "%-22s https://%s" $key .) }}
{{- end }}
{{- end }}
{{- end }}
{{- end }}
{{- end }}
{{- end }}
{{- if $hosts }}

Ingress hosts:
{{- range $hosts }}
  {{ . }}
{{- end }}
{{- else }}

No ingress is enabled. Services are reachable inside the cluster, for example:

  http://{{ .Release.Name }}-web-api.{{ .Release.Namespace }}.svc.cluster.local
{{- end }}
