-
Is there a way to set a HelmRelease to "dirty" in order to trigger manually a redeployment? Via flux CLI or via code |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 3 replies
-
one way seems to be to do a |
Beta Was this translation helpful? Give feedback.
-
The helm chart failed or the chart got successfully downloaded but the release failed? If the chart failed, then fixing the repository URL/auth/etc would trigger a HelmRelease install. |
Beta Was this translation helpful? Give feedback.
-
You likely want to enable retries for Helm install actions, this can be configured in your spec:
install:
remediation:
retries: 3 # NB: setting it to `-1` results in infinite retries |
Beta Was this translation helpful? Give feedback.
-
Seems sub optimal that I need to go an make a PR and add code to to kick something? |
Beta Was this translation helpful? Give feedback.
You likely want to enable retries for Helm install actions, this can be configured in your
HelmRelease
as follows: