charts
charts copied to clipboard
[bitnami/postgresql] Support for External Secrets in values.yaml
Name and Version
bitnami/postgresql 16.3.0
What is the problem this feature will solve?
I'm using the Bitnami PostgreSQL Helm chart and managing my deployments using GitOps. Currently, my values.yaml contains sensitive credentials, which I want to avoid storing in my Git repository. Here is an example of my current values.yaml:
global:
postgresql:
enabled: true
auth:
postgresPassword: "postgresPassword"
username: "username"
password: "password"
database: "database"
I would like to use external secrets management solutions instead of writing credentials directly in values.yaml. However, I couldn't find any way to configure the chart to use external secrets. also, the existingSecret parameter works only on postgresPassword.
can you help figure this out ?
Thank you for your attention to this matter.
What is the feature you are proposing to solve the problem?
Please consider adding support for external secrets to the Bitnami PostgreSQL Helm chart. This feature would greatly enhance the security and flexibility of managing sensitive information in a GitOps workflow.
What alternatives have you considered?
No response