From e85283e92775dc685a010f9484768cc1057465a9 Mon Sep 17 00:00:00 2001 From: James Blair Date: Sun, 1 Sep 2024 15:01:56 +1200 Subject: [PATCH] Fix missing oc login in exercise 2. --- data/workshop/exercise2.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/data/workshop/exercise2.mdx b/data/workshop/exercise2.mdx index b75ecc3..456e8a4 100644 --- a/data/workshop/exercise2.mdx +++ b/data/workshop/exercise2.mdx @@ -195,6 +195,7 @@ oc-mirror --from=/mnt/high-side-data/mirror_seq2_000000.tar docker://$(hostname) After a couple of minutes the mirror process will complete. We then need to tell OpenShift about the new content that is available by running the commands below. ```bash +oc login https://api.disco.lab:6443 --username kubeadmin -p "$(more /mnt/high-side-data/auth/kubeadmin-password)" --insecure-skip-tls-verify=true for file in $(find ./oc-mirror-workspace -type f -name '*.yaml'); do oc apply -f $file; done ```