Skip to content

Commit cd2b87e

Browse files
authoredAug 1, 2024··
feat(istio): add configurable TLS version (#624)
## Description - Introduced support for configuring the minimum TLS version for UDS Core. - Added `supportTLSV1_2` boolean flag in values file to allow selection between TLS 1.2 and TLS 1.3. - Updated Helm templates to conditionally set `minProtocolVersion` based on `supportTLSV1_2` value. - Ensured backward compatibility by defaulting to TLS 1.3. - Commented and documented the new configuration option for clarity. ## Related Issue Fixes #599 <!-- or --> Relates to # ## Type of change - [ ] Bug fix (non-breaking change which fixes an issue) - [x] New feature (non-breaking change which adds functionality) - [ ] Other (security config, docs update, etc) ## Checklist before merging - [ ] Test, docs, adr added or updated as needed - [x] [Contributor Guide](https://github.com/defenseunicorns/uds-template-capability/blob/main/CONTRIBUTING.md) followed Signed-off-by: jamestexas <jamestexasgardner@gmail.com>
1 parent f2164e1 commit cd2b87e

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed
 

‎src/istio/chart/templates/gateway.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ spec:
3232
mode: {{ $server.mode }}
3333
{{- if ne $server.mode "PASSTHROUGH" }}
3434
credentialName: gateway-tls
35-
minProtocolVersion: TLSV1_3
35+
# if supportTLSV1_2 is both defined and true, use TLSV1_2, otherwise use TLSV1_3
36+
minProtocolVersion: {{ if $.Values.tls.supportTLSV1_2 }}TLSV1_2{{ else }}TLSV1_3{{ end }}
3637
{{- end }}
3738
{{ end }}
3839
{{ end }}

‎src/istio/chart/values.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,5 @@ domain: "###ZARF_VAR_DOMAIN###"
2424
# # Hosts to add to this gateway
2525
# hosts:
2626
# - "*"
27+
# # Whether to support TLS 1.2 (if false, only TLS 1.3 will be supported)
28+
# supportTLSV1_2: true

0 commit comments

Comments
 (0)
Please sign in to comment.