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
Added support for 'helm diff upgrade --install' (#218)
`--install` is now a valid alias to `--allow-unreleased`. `helm dif upgrade --install` behaves exactly the same as 'helm diff upgrade --allow-unreleased.
Ref #108
f.BoolVar(&diff.reuseValues, "reuse-values", false, "reuse the last release's values and merge in any new values. If '--reset-values' is specified, this is ignored")
94
102
f.BoolVar(&diff.resetValues, "reset-values", false, "reset the values to the ones built into the chart and merge in any new values")
95
103
f.BoolVar(&diff.allowUnreleased, "allow-unreleased", false, "enables diffing of releases that are not yet deployed via Helm")
104
+
f.BoolVar(&diff.install, "install", false, "enables diffing of releases that are not yet deployed via Helm (equivalent to --allow-unreleased, added to match \"helm upgrade --install\" command")
96
105
f.BoolVar(&diff.noHooks, "no-hooks", false, "disable diffing of hooks")
97
106
f.BoolVar(&diff.includeTests, "include-tests", false, "enable the diffing of the helm test hooks")
98
107
f.BoolVar(&diff.devel, "devel", false, "use development versions, too. Equivalent to version '>0.0.0-0'. If --version is set, this is ignored.")
0 commit comments