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
+5-2
Original file line number
Diff line number
Diff line change
@@ -102,6 +102,7 @@ func main() {
102
102
systemNamespacestring
103
103
caCertDirstring
104
104
globalPullSecretstring
105
+
registriesConfigstring
105
106
)
106
107
flag.StringVar(&metricsAddr, "metrics-bind-address", "", "The address for the metrics endpoint. Requires tls-cert and tls-key. (Default: ':8443')")
107
108
flag.StringVar(&probeAddr, "health-probe-bind-address", ":8081", "The address the probe endpoint binds to.")
@@ -115,6 +116,7 @@ func main() {
115
116
flag.BoolVar(&operatorControllerVersion, "version", false, "Prints operator-controller version information")
116
117
flag.StringVar(&systemNamespace, "system-namespace", "", "Configures the namespace that gets used to deploy system resources.")
117
118
flag.StringVar(&globalPullSecret, "global-pull-secret", "", "The <namespace>/<name> of the global pull secret that is going to be used to pull bundle images.")
119
+
flag.StringVar(®istriesConfig, "registries-config", "/etc/containers/registries.conf", "The local file path of the registries configuration file")
0 commit comments