From 6770a4af4ecc14dafc9f4e28dcf4e541d3e68337 Mon Sep 17 00:00:00 2001 From: cbippley Date: Tue, 17 Jan 2023 13:04:13 -0500 Subject: [PATCH] OCPBUGS#5440 Correcting oc create secret command --- .../registry-operator-config-resources-storage-credentials.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/registry-operator-config-resources-storage-credentials.adoc b/modules/registry-operator-config-resources-storage-credentials.adoc index 1ea92c4fb3..d2ad5f1629 100644 --- a/modules/registry-operator-config-resources-storage-credentials.adoc +++ b/modules/registry-operator-config-resources-storage-credentials.adoc @@ -21,7 +21,7 @@ credentials used by the Operator, if default credentials were found. + [source,terminal] ---- -$ oc create secret generic image-registry-private-configuration-user --from-file=KEY1=value1 --from-literal=KEY2=value2 --namespace openshift-image-registry +$ oc create secret generic image-registry-private-configuration-user --from-literal=KEY1=value1 --from-literal=KEY2=value2 --namespace openshift-image-registry ----