k8s-sig-cluster-lifecycleawskubesprayhigh-availabilityansiblekubernetes-clustergcekubernetesbare-metal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Aleksandr Didenko
caa81f3ac2
|
8 years ago | |
---|---|---|
.. | ||
.gitignore | 8 years ago | |
00-create-infrastructure.tf | 8 years ago | |
01-create-inventory.tf | 8 years ago | |
README.md | 8 years ago | |
terraform.tfvars | 8 years ago |
README.md
Kubernetes on AWS with Terraform
Overview:
-
This will create nodes in a VPC inside of AWS
-
A dynamic number of masters, etcd, and nodes can be created
-
These scripts currently expect Private IP connectivity with the nodes that are created. This means that you may need a tunnel to your VPC or to run these scripts from a VM inside the VPC. Will be looking into how to work around this later.
How to Use:
- Export the variables for your Amazon credentials:
export AWS_ACCESS_KEY_ID="xxx"
export AWS_SECRET_ACCESS_KEY="yyy"
-
Update contrib/terraform/aws/terraform.tfvars with your data
-
Run with
terraform apply
-
Once the infrastructure is created, you can run the kubespray playbooks and supply contrib/terraform/aws/inventory with the
-i
flag.
Future Work:
- Update the inventory creation file to be something a little more reasonable. It's just a local-exec from Terraform now, using terraform.py or something may make sense in the future.