You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
4 years ago | |
|---|---|---|
| modules | 4 years ago | |
| .gitignore | 4 years ago | |
| .terraform.lock.hcl | 4 years ago | |
| README.md | 4 years ago | |
| cloud_init.cfg | 4 years ago | |
| example.tfvars | 4 years ago | |
| get-aws-node-status.sh | 4 years ago | |
| get-libvirt-bridge-ips.sh | 4 years ago | |
| get-vm-ips.sh | 4 years ago | |
| main.tf | 4 years ago | |
| providers.tf | 4 years ago | |
| variables.tf | 4 years ago | |
README.md
A Terraform script to create k8s nodes. This script has modules for creating the nodes on a KVM/QEMU (libvirt) hypervisor or creating the nodes via AWS.
The modules allow you create N VMs of a specific type. So you could create 1 master node and 3 worker nodes or you could create 3 Ubuntu VMs and 5 CentOS VMs, or whatever fits your needs.
Cloud-Init
Both the libvirt and aws modules use cloud-init for initial configuration of the VMs.
Dependencies
TODO REM add libvirt provider libvirt provider depends on mkisofs
security_driver = none for ubuntu host, link github issue. https://github.com/dmacvicar/terraform-provider-libvirt/issues/546
Other
Create a password hash.
python3 -c 'import crypt; print(crypt.crypt("test", crypt.mksalt(crypt.METHOD_SHA512)))'