Helm values not getting applied to template #16356
-
I have a problem by deploying an application which is referenced as a helm chart. It looks like that parameters from the values file aren't properly expanded into the final manifest, which leads to missing resources. The application is a gitlab-runner, which is in fact very simple, it just requires the For simplicity and first testing purpose of argocd, I just used the installation instructions from the getting started guide. (Version 2.8.4 )
This is the Application manifest created by the argo UI:
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
is your values.yaml properly indented and under |
Beta Was this translation helpful? Give feedback.
-
no worries. we have all been there before |
Beta Was this translation helpful? Give feedback.
-
I'm going to make this even more painfully obvious to those poor souls who come after me, spending over an hour banging their head against the wall: Your values need to go under a key named after the associated dependency ( Incorrect values.yaml gitlabUrl: '...'
... Correct values.yaml gitlab-runner:
gitlabUrl: '...'
... |
Beta Was this translation helpful? Give feedback.
is your values.yaml properly indented and under
gitlab-runner:
?