9.1 KiB
Usage
This is a guide on how to get started with Cluster API Provider for Proxmox Virtual Environment. To learn more about cluster API in more depth, check out the Cluster API book.
Table of contents
Dependencies
In order to deploy a K8s cluster with CAPMOX, you require the following:
-
Proxmox VE template in order to be able to create a cluster.
- You can build VM template using image-builder
- we recommend using the Proxmox VE builder
- OR by Building Raw Images
- You can build VM template using image-builder
-
clusterctl, which you can download it from Cluster API (CAPI) releases on GitHub.
-
Kubernetes cluster for running your CAPMOX controller
-
Proxmox VE Bridge e.g.
vmbr0with an IP Range for VMs.
Quick start
Prerequisites
In order to install Cluster API Provider for Proxmox VE, you need to have a Kubernetes cluster up and running, and clusterctl installed.
We need to add the IPAM provider to your clusterctl config file ~/.cluster-api/clusterctl.yaml:
providers:
- name: in-cluster
url: https://github.com/kubernetes-sigs/cluster-api-ipam-provider-in-cluster/releases/download/v0.1.0-alpha.3/ipam-components.yaml
type: IPAMProvider
Configuring and installing Cluster API Provider for Proxmox VE in a management cluster
Before you can create a cluster, you need to configure your management cluster. This is done by setting up the environment variables for CAPMOX and generating a cluster manifest.
clusterctl requires the following variables, which should be set in ~/.cluster-api/clusterctl.yaml as the following:
## -- Controller settings -- ##
PROXMOX_URL: "https://pve.example:8006" # The Proxmox VE host
PROXMOX_TOKEN: "root@pam!capi" # The Proxmox VE TokenID for authentication
PROXMOX_SECRET: "REDACTED" # The secret associated with the TokenID
## -- Required workload cluster default settings -- ##
PROXMOX_SOURCENODE: "pve" # The node that hosts the VM template to be used to provision VMs
TEMPLATE_VMID: "100" # The template VM ID used for cloning VMs
ALLOWED_NODES: "[pve1,pve2,pve3, ...]" # The Proxmox VE nodes used for VM deployments
VM_SSH_KEYS: "ssh-ed25519 ..., ssh-ed25519 ..." # The ssh authorized keys used to ssh to the machines.
## -- networking configuration-- ##
CONTROL_PLANE_ENDPOINT_IP: "10.10.10.4" # The IP that kube-vip is going to use as a control plane endpoint
NODE_IP_RANGES: "[10.10.10.5-10.10.10.50, ...]" # The IP ranges for Cluster nodes
GATEWAY: "10.10.10.1" # The gateway for the machines network-config.
IP_PREFIX: "25" # Subnet Mask in CIDR notation for your node IP ranges
DNS_SERVERS: "[8.8.8.8,8.8.4.4]" # The dns nameservers for the machines network-config.
BRIDGE: "vmbr1" # The network bridge device for Proxmox VE VMs
## -- xl nodes-- ##
BOOT_VOLUME_DEVICE: "scsi0" # The device used for the boot disk.
BOOT_VOLUME_SIZE: "100" # The size of the boot disk in GB.
NUM_SOCKETS: "2" # The number of sockets for the VMs.
NUM_CORES: "4" # The number of cores for the VMs.
MEMORY_MIB: "8048" # The memory size for the VMs.
EXP_CLUSTER_RESOURCE_SET: "true" # This enables the ClusterResourceSet feature that we are using to deploy CNI
the CONTROL_PLANE_ENDPOINT_IP is an IP that must be on the same subnet as the control plane machines
CONTROL_PLANE_ENDPOINT_IP is mandatory
the EXP_CLUSTER_RESOURCE_SET is required if you want to deploy CNI using cluster resource sets (mandatory in the cilium and calico flavors).
Once you have access to a management cluster, you can initialize Cluster API with the following:
clusterctl init --infrastructure proxmox --ipam in-cluster --core cluster-api:v1.5.3
Create a Workload Cluster
In order to create a new cluster, you need to generate a cluster manifest.
$ clusterctl generate cluster proxmox-quickstart \
--infrastructure proxmox \
--kubernetes-version v1.27.8 \
--control-plane-machine-count 1 \
--worker-machine-count 3 > cluster.yaml
# Create the workload cluster in the current namespace on the management cluster
$ kubectl apply -f cluster.yaml
Check the status of the cluster
$ clusterctl describe cluster proxmox-quickstart
Wait until the cluster is ready. This can take a few minutes.
Access the cluster
you can use the following command to get the kubeconfig:
clusterctl get kubeconfig proxmox-quickstart > proxmox-quickstart.kubeconfig
If you do not have CNI yet, you can use the following command to install a CNI:
KUBECONFIG=proxmox-quickstart.kubeconfig kubectl apply -f https://docs.projectcalico.org/manifests/calico.yaml
After that you should see your nodes become ready:
KUBECONFIG=proxmox-quickstart.kubeconfig kubectl get nodes
Cluster templates
We provide various templates for creating clusters. Some of these templates provide you with a CNI already.
For templates using CNIs you're required to create ConfigMaps to make ClusterResourceSets available.
We provide the following templates:
| Flavor | Tepmlate File | CRS File |
|---|---|---|
| cilium | templates/cluster-template-cilium.yaml | templates/crs/cni/cilium.yaml |
| calico | templates/cluster-template-calico.yaml | templates/crs/cni/calico.yaml |
| multiple-vlans | templates/cluster-template-multiple-vlans.yaml | - |
| default | templates/cluster-template.yaml | - |
For more information about advanced clusters please check our advanced setups docs.
Flavor with Cilium CNI
Before this cluster can be deployed, cilium needs to be configured. As a first step we
need to generate a manifest. Simply use our makefile:
make crs-cilium
Now install the ConfigMap into your k8s:
kubectl create cm cilium --from-file=data=templates/crs/cni/cilium.yaml
Now, you can create a cluster using the cilium flavor:
$ clusterctl generate cluster proxmox-cilium \
--infrastructure proxmox \
--kubernetes-version v1.27.8 \
--control-plane-machine-count 1 \
--worker-machine-count 3 \
--flavor cilium > cluster.yaml
$ kubectl apply -f cluster.yaml
Additional flavors
- Create the CRS file for your flavor:
make crs-$FLAVOR_NAME
- Create the configmap for the CRS. You have to name the configmap like the name of the template:
kubectl create cm $FLAVOR_NAME --from-file=data=$CRS_FILE
- Generate & Apply the cluster manifest.
$ clusterctl generate cluster proxmox-crs \
--infrastructure proxmox \
--kubernetes-version v1.27.8 \
--control-plane-machine-count 1 \
--worker-machine-count 3 \
--flavor $FLAVOR_NAME > cluster-crs.yaml
kubectl apply -f cluster-crs.yaml
Cleaning a cluster
kubectl delete cluster proxmox-quickstart
Custom cluster templates
If you need anything specific that requires a more complex setup, we recommend to use custom templates:
$ clusterctl generate custom-cluster proxmox-quickstart \
--infrastructure proxmox \
--kubernetes-version v1.27.8 \
--control-plane-machine-count 1 \
--worker-machine-count 3 \
--from ~/workspace/custom-cluster-template.yaml > custom-cluster.yaml