Closed ChristianRaoulis closed 4 months ago
The issue may not be directly related to the Bitnami container image or Helm chart, but rather to how the application is being utilized or configured in your specific environment.
Having said that, if you think that's not the case and are interested in contributing a solution, we welcome you to create a pull request. The Bitnami team is excited to review your submission and offer feedback. You can find the contributing guidelines here.
Your contribution will greatly benefit the community. Feel free to reach out if you have any questions or need assistance.
If you have any questions about the application itself, customizing its content, or questions about technology and infrastructure usage, we highly recommend that you refer to the forums and user guides provided by the project responsible for the application or technology.
With that said, we'll keep this ticket open until the stale bot automatically closes it, in case someone from the community contributes valuable insights.
The issue may not be directly related to the Bitnami container image or Helm chart, but rather to how the application is being utilized or configured in your specific environment.
Having said that, if you think that's not the case and are interested in contributing a solution, we welcome you to create a pull request. The Bitnami team is excited to review your submission and offer feedback. You can find the contributing guidelines here.
Your contribution will greatly benefit the community. Feel free to reach out if you have any questions or need assistance.
If you have any questions about the application itself, customizing its content, or questions about technology and infrastructure usage, we highly recommend that you refer to the forums and user guides provided by the project responsible for the application or technology.
With that said, we'll keep this ticket open until the stale bot automatically closes it, in case someone from the community contributes valuable insights.
The source of my issue is basically that the chart reads my existing secret instead of using the information from the chart values to create secretRefs.
It would be really nice if that behavior could be changed. I have never created a helm chart myself otherwise i would've opened a PR for this 😅
Thank you for opening this issue and submitting the associated Pull Request. Our team will review and provide feedback. Once the PR is merged, the issue will automatically close.
Your contribution is greatly appreciated!
I opened a PR which should fix my issue by preventing the chart from accessing the secret before the conjur init container / sidecar adds the values to the k8s secret.
It would be nice if someone could take a look on that PR or open another one that fixes the problem in a better way.
This Issue has been automatically marked as "stale" because it has not had recent activity (for 15 days). It will be closed if no further activity occurs. Thanks for the feedback.
Due to the lack of activity in the last 5 days since it was marked as "stale", we proceed to close this Issue. Do not hesitate to reopen it later if necessary.
Name and Version
bitnami/postgresql 15.2.9
What architecture are you using?
None
What steps will reproduce the bug?
global.postgresql.auth.existingSecret
valueWhat is the expected behavior?
The helm chart gets deployed with the Cyberark Conjur Sidecar which then reads and updates the Secret in
global.postgresql.auth.existingSecret
to contain the correct values. Postgres then uses those values to start upWhat do you see instead?
The helm chart deployment fails due to this error:
Additional information
The Secret
postgresql-app-secret
initially only contains information for conjur. Those information are then used by the Cyberark Conjur Sidecar to update the k8s secret with the real values. So initially thepostgres-password
key doesn't exist in the k8s Secret but conjur will insert it as soon as it starts.