2020-11-26 13:21:10 +00:00
|
|
|
{{- define "istio-ingress-values" }}
|
2021-04-16 11:41:31 +00:00
|
|
|
|
|
|
|
{{- with index .Values "istio-ingress" "global" }}
|
|
|
|
global:
|
|
|
|
{{- toYaml . | nindent 2 }}
|
|
|
|
{{- end }}
|
|
|
|
|
2020-11-26 13:21:10 +00:00
|
|
|
{{- if index .Values "istio-ingress" "public" }}
|
|
|
|
istio-ingress:
|
|
|
|
enabled: {{ index .Values "istio-ingress" "public" "enabled" }}
|
2021-04-22 13:43:10 +00:00
|
|
|
telemetry:
|
|
|
|
enabled: {{ .Values.metrics.enabled }}
|
2020-11-26 13:21:10 +00:00
|
|
|
{{- with index .Values "istio-ingress" "public" "gateway" }}
|
|
|
|
gateways:
|
|
|
|
istio-ingressgateway:
|
|
|
|
{{- toYaml . | nindent 6 }}
|
|
|
|
{{- end }}
|
|
|
|
{{- with index .Values "istio-ingress" "public" "dnsNames" }}
|
|
|
|
dnsNames:
|
|
|
|
{{- toYaml . | nindent 2 }}
|
|
|
|
{{- end }}
|
|
|
|
{{- end }}
|
|
|
|
|
|
|
|
{{- if index .Values "istio-ingress" "private" }}
|
|
|
|
istio-private-ingress:
|
|
|
|
enabled: {{ index .Values "istio-ingress" "private" "enabled" }}
|
2021-04-22 13:43:10 +00:00
|
|
|
telemetry:
|
|
|
|
enabled: {{ .Values.metrics.enabled }}
|
2020-11-26 13:21:10 +00:00
|
|
|
{{- with index .Values "istio-ingress" "private" "gateway" }}
|
|
|
|
gateways:
|
|
|
|
istio-ingressgateway:
|
|
|
|
{{- toYaml . | nindent 6 }}
|
|
|
|
{{- end }}
|
|
|
|
{{- with index .Values "istio-ingress" "private" "dnsNames" }}
|
|
|
|
dnsNames:
|
|
|
|
{{- toYaml . | nindent 2 }}
|
|
|
|
{{- end }}
|
|
|
|
{{- end }}
|
|
|
|
|
2020-11-24 14:44:57 +00:00
|
|
|
{{- end }}
|
2020-11-26 13:21:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
{{- define "istio-ingress-argo" }}
|
|
|
|
{{- end }}
|
|
|
|
|
|
|
|
{{ include "kubezero-app.app" . }}
|