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
* Certificate support for image registry
Remove the InsecureSkipTLSVerify annotations.
* Create a ClusterIssuer CA (via openssl) that is used by OLMv1 e2e
* Update the operator controller to specify a cert directory, rather than a
single file.
* Use this directory for catalogd and image-registries
* Update the deployment to reference CAs appropriately
Signed-off-by: Todd Short <[email protected]>
* fixup! Certificate support for image registry
Signed-off-by: Todd Short <[email protected]>
* fixup! Certificate support for image registry
Signed-off-by: Todd Short <[email protected]>
* fixup! Certificate support for image registry
Signed-off-by: Todd Short <[email protected]>
* fixup! Certificate support for image registry
* fixup! Certificate support for image registry
* fixup! Certificate support for image registry
---------
Signed-off-by: Todd Short <[email protected]>
Copy file name to clipboardExpand all lines: cmd/manager/main.go
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -80,11 +80,11 @@ func main() {
80
80
cachePathstring
81
81
operatorControllerVersionbool
82
82
systemNamespacestring
83
-
caCertstring
83
+
caCertDirstring
84
84
)
85
85
flag.StringVar(&metricsAddr, "metrics-bind-address", ":8080", "The address the metric endpoint binds to.")
86
86
flag.StringVar(&probeAddr, "health-probe-bind-address", ":8081", "The address the probe endpoint binds to.")
87
-
flag.StringVar(&caCert, "ca-cert", "", "The TLS certificate to use for verifying HTTPS connections to the Catalogd web server.")
87
+
flag.StringVar(&caCertDir, "ca-certs-dir", "", "The directory of TLS certificate to use for verifying HTTPS connections to the Catalogd and docker-registry web servers.")
0 commit comments