How to Upgrade App using operateRelease API in kubeapps? #4002
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi there @sehrishnaseer . The error you're seeing there is related to the chart's expectation about how credentials for that chart are handled. We shouldn't be returning a 500 there, but rather a 400 (created #4022 for that). Most bitnami charts will allow you to deploy an app without you specifying a secret for an admin password, creating the admin password for you during the initial deploy, but then requiring you to explicitly specify that password to helm (via the values or CLI) during an upgrade. For more info, see You can avoid this behavior by explicitly creating a secret manually before the initial deploy and referring to that in your values. |
Beta Was this translation helpful? Give feedback.
Hi there @sehrishnaseer . The error you're seeing there is related to the chart's expectation about how credentials for that chart are handled. We shouldn't be returning a 500 there, but rather a 400 (created #4022 for that).
Most bitnami charts will allow you to deploy an app without you specifying a secret for an admin password, creating the admin password for you during the initial deploy, but then requiring you to explicitly specify that password to helm (via the values or CLI) during an upgrade. For more info, see
https://docs.bitnami.com/general/how-to/troubleshoot-helm-chart-issues/#credential-errors-while-upgrading-chart-releases
You can avoid this behavior by explicitly creating …