Skip to content

Commit

Permalink
Add specific cipher list
Browse files Browse the repository at this point in the history
  • Loading branch information
jknipper committed Mar 12, 2024
1 parent 13e1701 commit 60effc4
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 3 deletions.
9 changes: 8 additions & 1 deletion charts/seed/templates/kubeadm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,14 @@ data:
streamingConnectionIdleTimeout: 0s
syncFrequency: 0s
volumeStatsAggPeriod: 0s
tlsMinVersion: VersionTLS13
tlsCipherSuites:
- TLS_CHACHA20_POLY1305_SHA256
- TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
- TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
- TLS_AES_128_GCM_SHA256
- TLS_AES_256_GCM_SHA384
- TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
- TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384
kind: ConfigMap
metadata:
name: kubelet-config
Expand Down
9 changes: 8 additions & 1 deletion pkg/api/handlers/get_cluster_bootstrap.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,14 @@ authentication:
enabled: true
rotateCertificates: true
nodeLeaseDurationSeconds: 20
tlsMinVersion: VersionTLS13
tlsCipherSuites:
- TLS_CHACHA20_POLY1305_SHA256
- TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
- TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
- TLS_AES_128_GCM_SHA256
- TLS_AES_256_GCM_SHA384
- TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
- TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384
featureGates:
`))

Expand Down
9 changes: 8 additions & 1 deletion pkg/templates/node_1.27.go
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,14 @@ storage:
rotateCertificates: true
nodeLeaseDurationSeconds: 20
cgroupDriver: systemd
tlsMinVersion: VersionTLS13
tlsCipherSuites:
- TLS_CHACHA20_POLY1305_SHA256
- TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
- TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
- TLS_AES_128_GCM_SHA256
- TLS_AES_256_GCM_SHA384
- TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
- TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384
- path: /etc/flatcar/update.conf
filesystem: root
mode: 0644
Expand Down

0 comments on commit 60effc4

Please sign in to comment.