TJ's Kubernetes Service, or TKS, is an IaC project that is used to deliver Kubernetes to Proxmox. Across the years, it has evolved many times and has used a multitude of different technologies. Nowadays, it is a relatively simple collection of Terraform manifests thanks to the work of BPG and Sidero Labs.
Requirement | Description |
---|---|
terraform |
Used for creating the cluster |
kubectl |
Used for upgrading the Talos nodes to install QEMU Guest Agent and removing nodes from the cluster |
talosctl |
Used for upgrading the Talos nodes to install QEMU Guest Agent and removing nodes from the cluster |
ssh-agent |
Used for connecting to the Proxmox server to bootstrap the Talos image |
Proxmox | You already know |
DNS Resolver | Used for configuring DHCP reservation during cluster creation and DNS resolution within the cluster |
-
Configure SSH access with a private key to your Proxmox server. This is needed to provision the installation image and also for certain API actions executed by the Terraform provider.
-
Create an API token on Proxmox. I use my create_user Ansible role to create mine.
-
Add your SSH key to
ssh-agent
:eval "$(ssh-agent -s)" ssh-add --apple-use-keychain ~/.ssh/sol.Milkyway
-
Set the environment variables required to authenticate to your Proxmox server according to the provider docs. I personally use an API Token and define them in
vars/config.env
. Source them into your shell.source vars/config.env
-
Review
variables.tf
and set any overrides according to your environment in a new tfvars file. -
Create DNS records and DHCP reservations for your nodes according to your configured Hostname, MAC address, and IP Address prefixes. Here is how mine is configured for two clusters:
Hostname MAC Address IP Address k8s-vip N/A 192.168.40.10 k8s-cp-1 00:00:00:00:00:11 192.168.40.11 k8s-cp-2 00:00:00:00:00:12 192.168.40.12 k8s-cp-3 00:00:00:00:00:13 192.168.40.13 k8s-node-1 00:00:00:00:00:21 192.168.40.21 k8s-node-2 00:00:00:00:00:22 192.168.40.22 k8s-node-3 00:00:00:00:00:23 192.168.40.23 test-k8s-vip N/A 192.168.40.50 test-k8s-cp-1 00:00:00:00:00:51 192.168.40.51 test-k8s-cp-2 00:00:00:00:00:52 192.168.40.52 test-k8s-cp-3 00:00:00:00:00:53 192.168.40.53 test-k8s-node-1 00:00:00:00:00:61 192.168.40.61 test-k8s-node-2 00:00:00:00:00:62 192.168.40.62 test-k8s-node-3 00:00:00:00:00:63 192.168.40.63 -
Initialize Terraform and create a workspace for your Terraform state. Or configure a different backend accordingly.
terraform init terraform workspace new test
-
Create the cluster
terraform apply --var-file="vars/test.tfvars"
-
Retrieve the Kubernetes and Talos configuration files. Be sure not to overwrite any existing configs you wish to preserve. I use kubecm to add/merge configs and kubectx to change contexts.
mkdir -p ~/.{kube,talos} touch ~/.kube/config terraform output -raw talosconfig > ~/.talos/config-test terraform output -raw kubeconfig > ~/.kube/config-test kubecm add -f ~/.kube/config-test kubectx admin@test
-
Confirm Kubernetes is bootstrapped and that all of the nodes have joined the cluster. The Controlplane nodes might take a moment to respond. You can confirm the status of each Talos node using
talosctl
or by reviewing the VM consoles in Proxmox.watch kubectl get nodes,all -A
Talos installs the QEMU Guest Agent, but it won't be enabled until the nodes are upgraded. Once everything in the cluster has become Ready
, upgrade the nodes using talosctl
or the manage_nodes script. If you opted to disable Flannel, you need to install a CNI before this will work.
NODES=$(kubectl get nodes --no-headers=true | awk '{print $1}' | tr '\n' ',')
./bin/manage_nodes upgrade $NODES
By default, Talos uses Flannel. To use a different CNI make sure that var.talos_disable_flannel
is set to true
during provisioning. The cluster will not be functional and you will not be able to upgrade the nodes to install QEMU Guest Agent until a CNI is enabled. Cilium can be installed using my project found here. You will also likely want to install Kubelet CSR Approver to automatically. accept the required certificate signing requests. Alternatively, after installing you can accept them manually:
kubectl get csr
kubectl certificate approve $CSR
The Terraform provider makes it quite easy to scale in, out, up, or down. Simply adjust the variables for resources or desired number of nodes and run terraform plan
again. If the plan looks good, apply it.
In the event you scale down a node, terraform will execute a local-provisioner that runs manage_nodes to remove the node from the cluster for you as well:
./bin/manage_nodes remove $NODE
Considerations:
- As QEMU Guest Agent's installation is not managed by Terraform, be sure to run
./bin/manage_nodes upgrade $NODE
against any new nodes that are added to enable it. Otherwise, Terraform will have issues interacting with it through the Proxmox API. - At this time I don't think it's possible to choose a specific node to remove. You must scale up and down the last node.
- Due to the way I configure IP Addressing using DHCP reservations, there is a limit of both 9 controlplanes and 9 workernodes.
You can find my personal collection of manifests here.
Proxmox won't be able to issue a shutdown signal to the virtual machines unless QEMU Guest Agent is enabled. This can lead to Terraform trying to destroy nodes unsuccessfully until the API times out the command. In the event this occurs, you can work connect to Proxmox manually and remove the VMs, then proceed with terraform destroy
as usual. For example:
ssh -i ~/.ssh/sol.milkyway [email protected] "rm /var/lock/qemu-server/lock-*; qm list | grep 40 | awk '{print \$1}' | xargs -L1 qm stop && sleep 5 && qm list | grep 40 | awk '{print \$1}' | xargs -L1 qm destroy"