We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
helm get hooks
--three-way-merge=true
1 parent f7598ff commit a09b99bCopy full SHA for a09b99b
Makefile
@@ -1,7 +1,7 @@
1
HELM_HOME ?= $(shell helm home)
2
VERSION := $(shell sed -n -e 's/version:[ "]*\([^"]*\).*/\1/p' plugin.yaml)
3
4
-HELM_3_PLUGINS := $(shell bash -c 'eval $$(helm env); echo $$HELM_PLUGINS')
+HELM_3_PLUGINS := $(shell helm env HELM_PLUGINS)
5
6
PKG:= github.com/databus23/helm-diff/v3
7
LDFLAGS := -X $(PKG)/cmd.Version=$(VERSION)
cmd/upgrade.go
@@ -282,7 +282,7 @@ func (d *diffCmd) runHelm3() error {
282
283
currentSpecs := make(map[string]*manifest.MappingResult)
284
if !newInstall && !d.dryRun {
285
- if !d.noHooks {
+ if !d.noHooks && !d.threeWayMerge {
286
hooks, err := getHooks(d.release, d.namespace)
287
if err != nil {
288
return err
0 commit comments