-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Open
Labels
kind/featureCategorizes issue or PR as related to a new feature.Categorizes issue or PR as related to a new feature.
Description
What do you want to happen?
I want to provide and load secrets to the container through volumes and volumeMounts which is a widely used approach.
This would be achieved by using the already configurable args to provide the file path to the controller.
manager:
args:
- --leader-elect
- --health-probe-bind-address=:8081
- --super-secret-configuration-file=/etc/my-secretsbut also allowing the following amendments:
# ... existing config (replicas, image, env, etc.) ...
## Additional volume mounts for the manager container
## These are in addition to webhook/metrics volumes which are handled automatically
##
additionalVolumeMounts: []
# - name: custom-volume
# mountPath: /etc/my-secrets
# readOnly: true
## Additional volumes for the manager pod
## These are in addition to webhook/metrics volumes which are handled automatically
##
additionalVolumes: []
# - name: custom-volume
# secret:
# name: super-secretsExtra Labels
No response
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
kind/featureCategorizes issue or PR as related to a new feature.Categorizes issue or PR as related to a new feature.