diff --git a/data/workshop/exercise2.mdx b/data/workshop/exercise2.mdx index 8155a1f..c11aa81 100644 --- a/data/workshop/exercise2.mdx +++ b/data/workshop/exercise2.mdx @@ -205,6 +205,8 @@ EOF Now we're ready to kick off the mirror! This can take 5-15 minutes so this is a good time to go grab a coffee or take a short break: +> Note: If you're keen to see a bit more verbose output to track the progress of the mirror to disk process you can add the `-v 5` flag to the command below. + ```bash oc mirror --config imageset-config.yaml file:///mnt/high-side ``` diff --git a/data/workshop/exercise3.mdx b/data/workshop/exercise3.mdx index 6acda6f..5437ff9 100644 --- a/data/workshop/exercise3.mdx +++ b/data/workshop/exercise3.mdx @@ -36,7 +36,7 @@ echo $SG_ID Once we know our subnet and security group ID's we can spin up our **High side** bastion server. Copy the commands below into your web terminal to complete this: ```bash -aws ec2 run-instances --image-id $BASTION_AMI_ID \ +aws ec2 run-instances --image-id $(cat ami.txt) \ --count 1 \ --instance-type t3.large \ --key-name disco-key \ @@ -46,11 +46,10 @@ aws ec2 run-instances --image-id $BASTION_AMI_ID \ --block-device-mappings "DeviceName=/dev/sdh,Ebs={VolumeSize=50}" ``` - -|![workshop](/workshops/static/images/disconnected/security-group.gif) | +|![workshop](/workshops/static/images/disconnected/launch-bastion-ec2.gif) | |:-----------------------------------------------------------------------------:| -| *Creating aws ec2 security group* | +| *Launching bastion ec2 instance* | diff --git a/public/static/images/disconnected/launch-bastion-ec2.gif b/public/static/images/disconnected/launch-bastion-ec2.gif new file mode 100644 index 0000000..3d133cc Binary files /dev/null and b/public/static/images/disconnected/launch-bastion-ec2.gif differ