You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you have the Helm Diff plugin installed, the kubernetes.core.helm module run the diff command before deploy. But, the command line generation logic works different and put generated yaml of a [release_]values dict to the first place before values_files, that means that these generated values become hidden.
This is quite similar to the #638 issue.
I'm going to raise a PR.
Align `helmdiff_check` behavior with the `deploy` function
SUMMARY
Align helmdiff_check behavior with the deploy function
Fixes#638
helmdiff_check respects set_values parameter
Fixes#669
helmdiff_check command line parameters sequence aligned to the deploy function
ISSUE TYPE
Bugfix Pull Request
COMPONENT NAME
kubernetes.core.helm
Reviewed-by: Mike Graves <mgraves@redhat.com>
(cherry picked from commit 7c4ec3b)
Align `helmdiff_check` behavior with the `deploy` function
SUMMARY
Align helmdiff_check behavior with the deploy function
Fixes#638
helmdiff_check respects set_values parameter
Fixes#669
helmdiff_check command line parameters sequence aligned to the deploy function
ISSUE TYPE
Bugfix Pull Request
COMPONENT NAME
kubernetes.core.helm
Reviewed-by: Mike Graves <mgraves@redhat.com>
(cherry picked from commit 7c4ec3b)
Co-authored-by: psmolkin <pavel.smolkin@gmail.com>
SUMMARY
When you have the Helm Diff plugin installed, the
kubernetes.core.helm
module run thediff
command before deploy. But, the command line generation logic works different and put generated yaml of a[release_]values
dict to the first place beforevalues_files
, that means that these generated values become hidden.This is quite similar to the #638 issue.
I'm going to raise a PR.
ISSUE TYPE
COMPONENT NAME
kubernetes.core.helm
ANSIBLE VERSION
COLLECTION VERSION
CONFIGURATION
OS / ENVIRONMENT
doesn't matter
STEPS TO REPRODUCE
where
values-commons.yaml
is:EXPECTED RESULTS
The result
region:
value rendered tohidden_one
ACTUAL RESULTS
The result
region
value forhelm diff upgrade
will bedefault
instead ofhidden_one
The text was updated successfully, but these errors were encountered: