You can execute the steps of this workshop directly on your workstation, but then you will need to make sure that you have the command-line tools for Git, Terraform, kubectl and AWS CLI installed. Instead of that, to not change any local settings, we recommend to use AWS Cloud9: a cloud IDE where you can get access to the terminal and install all the required tools.
A Cloud9 environment has already been provisioned for you in the CloudFormation template (created in the Starting the workshop section). You will now log in to it and do the final configuration steps: disable the AWS managed temporary credentials and download the required workshop files.
GitLabWorkshopC9Instance-...
and click the Open IDE button for it.When the environment comes up, close all tabs inside it and open a new terminal by clicking + > New Terminal.
Open preferences tab by choosing the cogwheel icon at the top-right corner of the screen. Then choose AWS Settings in the navigation pane.
Disable AWS managed temporary credentials toggle:
GitLabWorkshopC9Role
and green OK
):aws sts get-caller-identity --query Arn | grep GitLabWorkshopC9Role && echo -e "\033[0;32mOK\033[0m" || echo -e "\033[0;31mNOT OK\033[0m"
mod-gitlab-spot-workshop
with the actual stack name that you created / identified in the Starting the workshop section):export stack_name=mod-gitlab-spot-workshop
export AWS_REGION=$(curl --silent http://169.254.169.254/latest/dynamic/instance-identity/document | jq -r .region)
for output in $(aws cloudformation describe-stacks --stack-name $stack_name --query 'Stacks[].Outputs[].OutputKey' --output text)
do
export $output=$(aws cloudformation describe-stacks --stack-name $stack_name --query 'Stacks[].Outputs[?OutputKey==`'$output'`].OutputValue' --output text) >> ~/.bash_profile
eval "echo $output : \"\$$output\""
eval "echo export $output=\"\$$output\"" >> ~/.bash_profile
done
. ~/.bash_profile
If successful, the output should be similar to the following:
Subnet1 : subnet-0225d837e8401e3a7
VPC : vpc-0cef9a85fe90459e6
GitLabPassword : 5HfKdkUxc880EDnV
GitLabURL : https://d1in48s0v2ygmm.cloudfront.net
GitLabCacheBucket : mod-gitlab-spot-workshop-gitlabcachebucket-aoggbfq6go76
Subnet1Zone : us-east-1a
You are now ready to start the main sections of the workshop! Please proceed to Create a GitLab repository.