Last update: Tue Jan 14 23:15:49 UTC 2020 by @luckylittle
- Understand, identify, and work with containerization features
- Deploy a preconfigured application and identify crucial features such as namespaces, SELinux labels, and cgroups
Last update: Tue Jan 14 23:15:49 UTC 2020 by @luckylittle
| #!/bin/bash -xe | |
| SNOWBALL_IP='192.168.1.240' | |
| S3="aws --profile snowballEdge --region snow --endpoint https://${SNOWBALL_IP}:8443 --ca-bundle /etc/pki/ca-trust/source/anchors/sbe.crt s3" | |
| EC2="aws --profile snowballEdge --region snow --endpoint https://${SNOWBALL_IP}:8243 --ca-bundle /etc/pki/ca-trust/source/anchors/sbe.crt ec2" | |
| BUCKET="redhat-dan" | |
| IGN_CONFIGS='/home/danclark/openshift_clusters/snow/' | |
| IGN_BASE='/home/danclark/openshift_clusters/install-config.yaml' |