diff --git a/data/workshop/exercise2.mdx b/data/workshop/exercise2.mdx index 0199960..027f66a 100644 --- a/data/workshop/exercise2.mdx +++ b/data/workshop/exercise2.mdx @@ -98,3 +98,5 @@ oc create secret generic cloud-private-key \ |:-----------------------------------------------------------------------------:| | *Create a private key secret* | + +Once your network configuration, operator installation and secret creation are complete you're ready to move on to the next exercise 🎉 diff --git a/data/workshop/exercise3.mdx b/data/workshop/exercise3.mdx index 934b4c4..4a61df0 100644 --- a/data/workshop/exercise3.mdx +++ b/data/workshop/exercise3.mdx @@ -121,4 +121,9 @@ Within OpenShift you can then click the ➕ button in the top right hand corner, ## 3.2 Verify windows machine status -> +After creating the `MachineSet` a new Windows machine will be automatically provisioned and added to our OpenShift cluster, as we set our desired replicas in the YAML to `1`. + +Creating, provisioning and configuring a new Windows host can be a lengthy process taking 15-30 minutes so now is a good time to take a break ☕. + +You can keep an eye on the status of your Machine in the OpenShift web console. Once it reaches the **Provisioned as node** status you are ready to proceed to the next exercise. + diff --git a/data/workshop/exercise4.mdx b/data/workshop/exercise4.mdx index 2e69f2a..1d83081 100644 --- a/data/workshop/exercise4.mdx +++ b/data/workshop/exercise4.mdx @@ -52,48 +52,4 @@ This will allow us to deploy any helm charts available in this repository. - -In this excersie we will create a `MachineSet`. Once created this will automatically begin provisoning a Windows machine and adding it to our cluster as a worker node. - -Below is a yaml snippet we will use as base to create our `MachineSet`: - -```yaml - metadataServiceOptions: {} - tags: - - name: kubernetes.io/cluster/cluster- - value: owned - deviceIndex: 0 - ami: - id: ami-0e76083a67107f741 - subnet: - filters: - - name: 'tag:Name' - values: - - cluster--private-ap-southeast- - apiVersion: awsproviderconfig.openshift.io/v1beta1 - iamInstanceProfile: - id: cluster--worker-profile -``` - -There are ten references to `` in the sample that we need to find & replace with the actual cluster id for the cluster we have been allocated for the workshop and five references to the availability `` for our cluster nodes that we also need to update with our actual zone in use. - -Run the following command in your bastion host to find your cluster id and zone: - -```bash -name=$(oc get machineset -A -o jsonpath={.items[0].metadata.name}) -echo "Cluster id is: ${name:8:11}" -echo "Cluster availability zone is: ${name:40:2}" -``` - -After retrieving your cluster id and zone update the sample `MachineSet` using your preferred text editor, then select and copy all of the text to clipboard. - -Within OpenShift you can then click the ➕ button in the top right hand corner, paste in your yaml and click **Create**. - - -``` - - -|![workshop](/workshops/static/images/windows/create-machineset.gif) | -|:-----------------------------------------------------------------------------:| -| *Create a windows machineset* | - +## 4.2 Deploy candystore helm chart