Complete security exercise 1.

This commit is contained in:
2024-10-17 09:14:54 +13:00
parent 0c75128408
commit 11b8154424
5 changed files with 89 additions and 1 deletions

View File

@ -5,3 +5,28 @@
This document captures the steps required to set up an instance of the workshop.
* Log in to cluster
#+begin_src tmux
oc login --web https://api.cluster-wc9vg.wc9vg.sandbox1332.opentlc.com:6443
#+end_src
* Update cluster logo
#+begin_src tmux
oc create configmap console-custom-logo --from-file=/home/james/Downloads/logo.png -n openshift-config
cat << EOF | oc apply --filename -
apiVersion: operator.openshift.io/v1
kind: Console
metadata:
name: cluster
spec:
customization:
customLogoFile:
key: logo.png
name: console-custom-logo
customProductName: ACME Financial Services OpenShift Console
EOF
#+end_src