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.
 
 
Go to file
Curtis Wilson ae2bb14251 Rolled back main.tf to have master and worker. 4 years ago
modules Make libvirt module accept config map. 4 years ago
.gitignore Create ansible invetory with get-vm-ips.sh 4 years ago
.terraform.lock.hcl Single AWS node is working. 4 years ago
README.md Added arch AWS image. 4 years ago
cloud_init.cfg Setting passwords and keys working via variables. 4 years ago
example.tfvars rebase with master 4 years ago
get-aws-node-status.sh Added a script to poll AWS node status. 4 years ago
get-vm-ips.sh Added a script to poll AWS node status. 4 years ago
main.tf Rolled back main.tf to have master and worker. 4 years ago
variables.tf Moved node-config to be local, added AMI vars. 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)))'