Skip to content

Commit

Permalink
feat(istio-ingress-gateway): Sync with recent changes in master branch
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Bertrand authored and statcan-svc committed Feb 13, 2023
1 parent 759bd96 commit b8cae0c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion stable/istio-ingress-gateway/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 3.0.2
version: 3.0.3

dependencies:
- name: gateway
Expand Down
2 changes: 1 addition & 1 deletion stable/istio-ingress-gateway/templates/certificate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
issuerRef:
kind: {{ .Values.https.certificate.issuerRef.kind }}
name: {{ .Values.https.certificate.issuerRef.name }}
secretName: {{ .Values.https.certificate.secretName }}
secretName: {{ .Values.https.certificate.secretName | default (include "istio-ingress-gateway.fullname" .) | quote }}
privateKey:
rotationPolicy: Always
{{- end }}
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
subFilter:
name: envoy.filters.http.router
patch:
operation: INSERT_BEFORE
operation: INSERT_FIRST
value:
name: envoy.lua
typed_config:
Expand Down
2 changes: 1 addition & 1 deletion stable/istio-ingress-gateway/templates/gateway-https.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ spec:
protocol: HTTPS
tls:
cipherSuites: {{ .Values.https.cipherSuites | toYaml | nindent 8 }}
credentialName: {{ .Values.https.certificate.secretName }}
credentialName: {{ .Values.https.certificate.secretName | default (include "istio-ingress-gateway.fullname" .) | quote }}
maxProtocolVersion: TLSV1_2
minProtocolVersion: TLSV1_2
mode: SIMPLE
Expand Down
1 change: 1 addition & 0 deletions stable/istio-ingress-gateway/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ https:
# Configures a cert-manager Certificate for automated certificate generation.
certificate:
# Defines the name of the secret that will contain the certificates.
# Will automatically be generated if left blank.
secretName:
# Defines list of DNS names for the certificate.
# Note: The first entry is set as the common name.
Expand Down

0 comments on commit b8cae0c

Please sign in to comment.