Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
debug: allow-paths and readOnly-volumeMounts
  • Loading branch information
hongkailiu committed Jul 22, 2025
commit 937be8e98fa49ed8a4b8cbabba93b8301f8711f3
6 changes: 3 additions & 3 deletions install/0000_00_cluster-version-operator_03_deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ spec:
- args:
- --logtostderr
- --secure-listen-address=[$(IP)]:9099
- --tls-cipher-suites=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305,TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305
- --upstream=http://127.0.0.1:9099/
- --tls-cert-file=/etc/tls/serving-cert/tls.crt
- --tls-private-key-file=/etc/tls/serving-cert/tls.key
- --client-ca-file=/etc/tls/service-ca/client-ca.crt
- --config-file=/etc/kube-rbac-proxy/config.yaml
- --allow-paths=/metrics
env:
- name: IP
valueFrom:
Expand All @@ -57,10 +57,10 @@ spec:
volumeMounts:
- mountPath: /etc/tls/serving-cert
name: serving-cert
readOnly: false
readOnly: true
- mountPath: /etc/tls/service-ca
name: service-ca
readOnly: false
readOnly: true
- mountPath: /etc/kube-rbac-proxy
name: secret-kube-rbac-proxy-metric
readOnly: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ spec:
- args:
- --logtostderr
- --secure-listen-address=[$(IP)]:9099
- --tls-cipher-suites=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305,TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305
- --upstream=http://127.0.0.1:9099/
- --tls-cert-file=/etc/tls/serving-cert/tls.crt
- --tls-private-key-file=/etc/tls/serving-cert/tls.key
- --client-ca-file=/etc/tls/service-ca/client-ca.crt
- --config-file=/etc/kube-rbac-proxy/config.yaml
- --allow-paths=/metrics
env:
- name: IP
valueFrom:
Expand All @@ -57,10 +57,10 @@ spec:
volumeMounts:
- mountPath: /etc/tls/serving-cert
name: serving-cert
readOnly: false
readOnly: true
- mountPath: /etc/tls/service-ca
name: service-ca
readOnly: false
readOnly: true
- mountPath: /etc/kube-rbac-proxy
name: secret-kube-rbac-proxy-metric
readOnly: true
Expand Down