We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ea7132 commit 7eb438dCopy full SHA for 7eb438d
pkg/integration/integration.go
@@ -38,7 +38,7 @@ func IsEnabled(ctx context.Context, clientset kubernetes.Interface, namespace st
38
39
v, ok := secret.Data[integrationEnabledKey]
40
if !ok || len(v) == 0 {
41
- return true, nil
+ return false, nil
42
}
43
44
enabled, _ := strconv.ParseBool(string(v))
0 commit comments