Skip to content

Quickstart

Dmitriy Kharlamov edited this page Jan 17, 2020 · 2 revisions

Quickstart

Create eks cluster and services

  • Clone this repository
  • Copy example folder and charts folder to your work directory
  • Rename the example folder to the name of your project (example -> hydrosphere)
  • Edit the modules.tf to select the modules you want to use (comment out, add or delete unnecessary modules)
  • Rename and edit example.tfvars (see the tips in the file)
  • Run terraform init --upgrade in "work directory"/"project name"
  • Run terraform plan -var-file=xxx.tfvars -out plan
  • Run terraform apply plan

Modify eks cluster and services

  • Edit the modules.tf to select the modules you want to use (comment out, add or delete unnecessary modules)
  • Run terraform init --upgrade in "work directory"/"project name"
  • Run terraform plan -var-file=xxx.tfvars -out plan
  • Run terraform apply plan

Destroy all

  • Run terraform destroy
Clone this wiki locally