Skip to content

Commit 7715a58

Browse files
authored
force tlsCipherSuites to avoid SWEET32 issue (#148)
1 parent 0f51c86 commit 7715a58

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

charts/nutanix-cloud-provider/Chart.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,13 @@ keywords:
1212
- Cloud Controller Manager
1313
- Cloud
1414
- CCM
15-
version: 0.3.3
15+
version: 0.3.4
1616
appVersion: "v0.3.2"
1717
annotations:
1818
artifacthub.io/displayName: "Nutanix Cloud Provider"
1919
artifacthub.io/containsSecurityUpdates: "true"
2020
artifacthub.io/changes: |
21-
- Nutanix Cloud provider upgrade to v0.3.2
22-
- Add Additional Trust Bundle Support
21+
- Fix SWEET32 issue
2322
artifacthub.io/maintainers: |
2423
- name: Nutanix Cloud Native Team
2524
email: cloudnative@nutanix.com

charts/nutanix-cloud-provider/templates/cloud-provider-nutanix-deployment.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ spec:
5454
args:
5555
- "--leader-elect=true"
5656
- "--cloud-config=/etc/cloud/nutanix_config.json"
57+
- "--tls-cipher-suites={{ .Values.tlsCipherSuites }}"
5758
resources:
5859
{{- toYaml .Values.resources | nindent 12 }}
5960
volumeMounts:

charts/nutanix-cloud-provider/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ resources:
6666
cpu: 100m
6767
memory: 50Mi
6868

69+
tlsCipherSuites: TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256,TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256
70+
6971
nodeSelector:
7072
node-role.kubernetes.io/control-plane: ""
7173

0 commit comments

Comments
 (0)