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
Copy file name to clipboardExpand all lines: main.go
+8-1Lines changed: 8 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -96,6 +96,8 @@ func main() {
96
96
noRemoteBasesbool
97
97
httpRetryint
98
98
defaultServiceAccountstring
99
+
sopsAgeSecretstring
100
+
runtimeNamespacestring
99
101
featureGates feathelper.FeatureGates
100
102
disallowedFieldManagers []string
101
103
tokenCacheOptions pkgcache.TokenFlags
@@ -111,6 +113,7 @@ func main() {
111
113
"Disallow remote bases usage in Kustomize overlays. When this flag is enabled, all resources must refer to local files included in the source artifact.")
112
114
flag.IntVar(&httpRetry, "http-retry", 9, "The maximum number of retries when failing to fetch artifacts over HTTP.")
113
115
flag.StringVar(&defaultServiceAccount, "default-service-account", "", "Default service account used for impersonation.")
116
+
flag.StringVar(&sopsAgeSecret, "sops-age-secret", "", "The name of a Kubernetes secret in the RUNTIME_NAMESPACE containing a SOPS age decryption key for fallback usage.")
114
117
flag.StringArrayVar(&disallowedFieldManagers, "override-manager", []string{}, "Field manager disallowed to perform changes on managed resources.")
0 commit comments