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 c5e5f19 commit 609de73Copy full SHA for 609de73
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