We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37416f0 commit ca6b83aCopy full SHA for ca6b83a
charts/hub-agent/templates/deployment.yaml
@@ -92,9 +92,9 @@ spec:
92
- name: webhook-cert
93
secret:
94
secretName: {{ .Values.webhookCertSecretName }}
95
- # defaultMode 0400 (read-only for owner) prevents unauthorized access to certificate files
96
- # and reduces attack surface by ensuring only the container process can read the certs
97
- defaultMode: 0400
+ # defaultMode 0444 (read for all) allows the container process to read the certs
+ # regardless of the user/group it runs as
+ defaultMode: 0444
98
{{- end }}
99
{{- with .Values.affinity }}
100
affinity:
0 commit comments