You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This change is aimed at adding an extra layer of protection for secrets in Kubernetes pods.
Currently, the Secrets permissions is set to 420 (decimal) => 644 (octal) => rwx -r- ----, which is considered over-permissive.
The goal is to set the permissions to 256 (decimal) => 400 (octal) => r-- --- ---.
This change is aimed at adding an extra layer of protection for secrets in Kubernetes pods.
Currently, the Secrets permissions is set to 420 (decimal) => 644 (octal) => rwx -r- ----, which is considered over-permissive.
The goal is to set the permissions to 256 (decimal) => 400 (octal) => r-- --- ---.
The Secret's permissions we wish to change:
sap-btp-service-operator/sapbtp-operator-charts/templates/deployment.yml
Lines 134 to 137 in 1c3ea5a
The text was updated successfully, but these errors were encountered: