helmfile.yaml
1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
bases:
- ../common/environments.yaml
---
releases:
- name: istio-gateway-{{ .Values.name }}
namespace: {{ .Values.namespace }}
chart: charts/gateway
disableValidationOnInstall: true
values:
- nameSuffix: -{{ .Values.name }}
strategicMergePatches:
- apiVersion: networking.istio.io/v1beta1
kind: Gateway
metadata:
name: istio-gateway-{{ .Values.name }}
namespace: {{ .Values.namespace }}
spec:
selector: {{ .Values.selector | toYaml | nindent 12 }}
servers:
{{- if .Values.http.hosts }}
- port:
name: http
number: 80
protocol: HTTP
hosts: {{ .Values.http.hosts | toYaml | nindent 16 }}
{{- end }}
{{- if .Values.tls.hosts }}
- port:
name: https
number: 443
protocol: HTTPS
hosts: {{ .Values.http.hosts | toYaml | nindent 16 }}
tls:
credentialName: istio-gateway-cert-{{ .Values.name }}
mode: {{ .Values.tls.mode | quote }}
{{- end }}
- apiVersion: cert-manager.io/v1
kind: Certificate
metadata:
name: istio-gateway-cert-{{ .Values.name }}
namespace: {{ .Values.namespace }}
{{- if .Values.tls.hosts }}
spec:
secretName: istio-gateway-cert-{{ .Values.name }}
dnsNames: {{ .Values.tls.hosts | toYaml | nindent 12 }}
issuerRef: {{ .Values.tls.issuerRef | toYaml | nindent 12 }}
{{ else }}
$patch: delete
{{- end }}