Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug 1847318: set TLS min version to 1.2 #826

Merged
merged 1 commit into from
Jul 4, 2020
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions assets/prometheus-operator/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ spec:
- --config-reloader-memory=0
- --web.enable-tls=true
- --web.tls-cipher-suites=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,TLS_RSA_WITH_AES_128_CBC_SHA256,TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256,TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256
- --web.tls-min-version=VersionTLS12
- --manage-crds=false
image: quay.io/coreos/prometheus-operator:v0.38.1
name: prometheus-operator
Expand Down
1 change: 1 addition & 0 deletions jsonnet/prometheus-operator.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ local certsCAVolumeName = 'operator-certs-ca-bundle';
'--config-reloader-memory=0',
'--web.enable-tls=true',
'--web.tls-cipher-suites=' + std.join(',', $._config.tlsCipherSuites),
'--web.tls-min-version=VersionTLS12',
'--manage-crds=false',
],
securityContext: {},
Expand Down
4 changes: 2 additions & 2 deletions pkg/manifests/bindata.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.