diff --git a/pkg/action/action.go b/pkg/action/action.go index a1ff9e66f..4c00853e3 100644 --- a/pkg/action/action.go +++ b/pkg/action/action.go @@ -283,5 +283,9 @@ func ConfigRequired(command string) bool { "helm": false, } - return actionConfigRequired[command] + if val, ok := actionConfigRequired[command]; ok { + return val + } + // Assume commands not present in the map require the config by default + return true }