Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions changelog.d/2-features/coturn-tls
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
The coturn Helm chart now has a `.tls.ciphers` option to allow setting
the cipher list for TLS connections, when TLS is enabled. By default,
this option is set to a cipher list which is compliant with [BSI
TR-02102-2](https://www.bsi.bund.de/SharedDocs/Downloads/EN/BSI/Publications/TechGuidelines/TG02102/BSI-TR-02102-2.pdf).
3 changes: 3 additions & 0 deletions charts/coturn/templates/configmap-coturn-conf-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ data:
{{- if .Values.tls.enabled }}
cert=/secrets-tls/tls.crt
pkey=/secrets-tls/tls.key
{{- if .Values.tls.ciphers }}
cipher-list={{ .Values.tls.ciphers }}
{{- end }}
{{- else }}
no-tls
{{- end }}
Expand Down
2 changes: 2 additions & 0 deletions charts/coturn/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ coturnTurnTlsListenPort: 5349

tls:
enabled: false
# compliant with BSI TR-02102-2
ciphers: 'ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:TLS_AES_128_GCM_SHA256:TLS_AES_256_GCM_SHA384'
secretRef:
reloaderImage:
# container image containing https://github.com/Pluies/config-reloader-sidecar
Expand Down