Closed afdecastro879 closed 10 months ago
I have opened a PR for this one, but couldn't test it on CI
When is this version going to be published? Still cannot use this fix. Unknown version 3.0.1 for orb circleci/helm
Done! I'm really sorry for not getting it out sooner.
Orb version
3.0.0
What happened
When setting the option
create_namespace
in theupgrade_helm_chart
command the build errors and never sets the option--create-namespace
to create a new namespace:I think the error is related to the fact that the environment variable in the command is set to
HELM_BOOL_CREATE_NAMESPACE
(See here) but when using it the script usesHELM_BOOL_CREATE_NAME_SPACE
(Note the_
character between the NAME and SPACE See here).I think the same happens with the
install_helm_chart
command hereExpected behaviour
Using the
upgrade_helm_chart
with thecreate_namespace
option should add the--create-namespace
option to the final helm command and should create a namespace if does not exists.