Skip to content

Latest commit

 

History

History
34 lines (21 loc) · 1.61 KB

one-step-aws.md

File metadata and controls

34 lines (21 loc) · 1.61 KB

One Step Foundation Deployment for AWS

This lab can be used to deploy all three clusters included in the foundational lab setup. You will execute a single script that calls all the scripts included in the step-by-step guides.

Note: The labs depending on a master params.yaml file that is used for environment specific configuration data. A sample REDACTED-params.yaml file is included at the root of this repo, named REDACTED-params.yaml. It is recommended you copy this file and rename it to params.yaml and place it in the local-config/ directory, and then start making your adjustments. local-config/ is included in the .gitignore so your version won't be included in an any future commits you have to the repo.

Setup Environment Variable for params.yaml

Set the PARAMS_YAML environment variable to the path of your params.yaml file. If you followed the recommendation, the value would be local-config/param.yaml, however you may choose otherwise. This may be the case if you are using multiple params.yaml files in the case of AWS and vSphere deployments.

# Update the the path from the default if you have a different params.yaml file name or location.
export PARAMS_YAML=local-config/params.yaml

Ensure that your copy of params.yaml indicates aws as the IaaS.

Execute the Deploy All Script

Now you can execute the following script to perform all of those tasks:

./scripts/deploy-all-aws.sh

Note: This process should take about 30 minutes to complete.

Tear Down

Execute the following script to tear down your environment.

./scripts/delete-all-aws.sh