UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit d70c4aea authored by Chris Harden's avatar Chris Harden Committed by Ryan Garcia
Browse files

1032: Enable Istio mTLS globally on istio-system namespace

parent c9fa5c40
No related branches found
No related tags found
1 merge request!32431032: Enable Istio mTLS globally on istio-system namespace
......@@ -7,6 +7,9 @@
{{- $domainName := default .Values.domain .Values.hostname }}
domain: {{ $domainName }}
mtls:
mode: {{ .Values.istio.mtls.mode }}
enterprise: {{ .Values.istio.enterprise }}
istiod:
......@@ -189,4 +192,4 @@ k8s:
name: tls
nodePort: {{ add .nodePortBase 3 }}
{{- end }}
{{- end }}
\ No newline at end of file
{{- end }}
......@@ -240,6 +240,9 @@
"istio": {
"properties": {
"enabled": true,
"mtls": {
"type": "object"
},
"sourceType": true,
"git": true,
"helmRepo": true,
......
......@@ -155,6 +155,10 @@ imagePullPolicy: IfNotPresent
istio:
# -- Toggle deployment of Istio.
enabled: true
mtls:
# -- STRICT = Allow only mutual TLS traffic,
# PERMISSIVE = Allow both plain text and mutual TLS traffic
mode: STRICT
# -- Choose source type of "git" or "helmRepo"
sourceType: "git"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment