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: cmd/manager/main.go
+8-10
Original file line number
Diff line number
Diff line change
@@ -74,14 +74,13 @@ func podNamespace() string {
74
74
75
75
funcmain() {
76
76
var (
77
-
metricsAddrstring
78
-
enableLeaderElectionbool
79
-
probeAddrstring
80
-
cachePathstring
81
-
operatorControllerVersionbool
82
-
systemNamespacestring
83
-
provisionerStorageDirectorystring
84
-
caCertstring
77
+
metricsAddrstring
78
+
enableLeaderElectionbool
79
+
probeAddrstring
80
+
cachePathstring
81
+
operatorControllerVersionbool
82
+
systemNamespacestring
83
+
caCertstring
85
84
)
86
85
flag.StringVar(&metricsAddr, "metrics-bind-address", ":8080", "The address the metric endpoint binds to.")
87
86
flag.StringVar(&probeAddr, "health-probe-bind-address", ":8081", "The address the probe endpoint binds to.")
@@ -92,7 +91,6 @@ func main() {
92
91
flag.StringVar(&cachePath, "cache-path", "/var/cache", "The local directory path used for filesystem based caching")
93
92
flag.BoolVar(&operatorControllerVersion, "version", false, "Prints operator-controller version information")
94
93
flag.StringVar(&systemNamespace, "system-namespace", "", "Configures the namespace that gets used to deploy system resources.")
95
-
flag.StringVar(&provisionerStorageDirectory, "provisioner-storage-dir", storage.DefaultBundleCacheDir, "The directory that is used to store bundle contents.")
0 commit comments