The Cluster API provider for metal-stack (CAPMS) implements the declarative management of Kubernetes cluster infrastructure.
Caution
This project is currently under heavy development and is not advised to be used in production any time soon. Please use our stack on top of Gardener instead. User documentation will follow as soon. Until then, head to our CONTRIBUTING.md.
Currently, we provide the following custom resources:
MetalStackCluster
can be used as infrastructure cluster and ensures that there is a control plane IP for the cluster.MetalStackMachine
bridges between infrastructure machines and metal-stack machines.
Note
Currently our infrastructure provider is only tested against the Cluster API bootstrap provider Kubeadm (CABPK). While other providers might work, there is no guarantee nor the goal to reach compatibility.
Prerequisites:
- Running metal-stack installation. See our installation section on how to get started with metal-stack.
- Management cluster (with network access to the metal-stack infrastructure).
- CLI metalctl installed for communicating with the metal-api. Installation instructions can be found in the corresponding repository.
- CLI clusterctl
First, add the metal-stack infrastructure provider to your clusterctl.yaml
:
# ~/.config/cluster-api/clusterctl.yaml
providers:
- name: "metal-stack"
url: "https://github.com/metal-stack/cluster-api-provider-metal-stack/releases/latest/download/infrastructure-components.yaml"
type: InfrastructureProvider
Now, you are able to install the CAPMS into your management cluster:
# export the following environment variables
export METAL_API_URL=<url>
export METAL_API_HMAC=<hmac>
export EXP_KUBEADM_BOOTSTRAP_FORMAT_IGNITION=true
# initialize the management cluster
clusterctl init --infrastructure metal-stack
Caution
Manual steps needed: Due to the early development stage, manual actions are needed for the cluster to operate. Some metal-stack resources need to be created manually.
A node network needs to be created.
export METAL_PARTITION=<partition>
export METAL_PROJECT_ID=<project-id>
metalctl network allocate --description "<description>" --name <name> --project $METAL_PROJECT_ID --partition $METAL_PARTITION
# export environment variable for use in the next steps
export METAL_NODE_NETWORK_ID=$(metalctl network list --name <name> -o template --template '{{ .id }}')
A firewall needs to be created with appropriate firewall rules. An example can be found at firewall-rules.yaml.
# export environment variable for the firewall image and size
export FIREWALL_MACHINE_IMAGE=<firewall-image>
export FIREWALL_MACHINE_SIZE=<machine-size>
metalctl firewall create --description <description> --name <name> --hostname <hostname> --project $METAL_PROJECT_ID --partition $METAL_PARTITION --image $FIREWALL_MACHINE_IMAGE --size $FIREWALL_MACHINE_SIZE --firewall-rules-file=<rules.yaml> --networks internet,$METAL_NODE_NETWORK_ID
For your first cluster, it is advised to start with our generated template.
# display required environment variables
clusterctl generate cluster <cluster-name> --infrastructure metal-stack --list-variables
# set additional environment variables
export CONTROL_PLANE_MACHINE_IMAGE=<machine-image>
export CONTROL_PLANE_MACHINE_SIZE=<machine-size>
export WORKER_MACHINE_IMAGE=<machine-image>
export WORKER_MACHINE_SIZE=<machine-size>
# generate manifest
clusterctl generate cluster <cluster-name> --kubernetes-version v1.30.6 --infrastructure metal-stack
Apply the generated manifest from the clusterctl
output.
kubectl apply -f <manifest>
Once your control plane and worker machines have been provisioned, you need to install your CNI of choice into your created cluster. This is required due to CAPI. An example is provided below:
# get the kubeconfig
clusterctl get kubeconfig metal-test > capms-cluster.kubeconfig
# install the calico operator
kubectl --kubeconfig=capms-cluster.kubeconfig create -f https://raw.githubusercontent.com/projectcalico/calico/v3.28.2/manifests/tigera-operator.yaml
# install the calico CNI
cat <<EOF | kubectl --kubeconfig=capms-cluster.kubeconfig create -f -
apiVersion: operator.tigera.io/v1
kind: Installation
metadata:
name: default
spec:
# Configures Calico networking.
calicoNetwork:
bgp: Disabled
ipPools:
- name: default-ipv4-ippool
blockSize: 26
cidr: 10.240.0.0/12
encapsulation: None
mtu: 1440
cni:
ipam:
type: HostLocal
type: Calico
EOF
Additionally, the metal-ccm
has to be deployed for the machines to reach Running
phase. For this use the template and fill in the required variables.
cat capi-lab/metal-ccm.yaml | envsubst | kubectl --kubeconfig capms-cluster.kubeconfig apply -f -
If you want to provide service's of type LoadBalancer
through MetalLB by the metal-ccm
, you need to deploy MetalLB:
kubectl --kubeconfig capms-cluster.kubeconfig apply --kustomize capi-lab/metallb
For each worker node in your Kubernetes cluster, you need to create a BGP peer configuration. Replace the placeholders ({{ NODE_ASN }}, {{ NODE_HOSTNAME }}, and {{ NODE_ROUTER_ID }}) with the appropriate values for each node.
# in metal-stack, list all machines of your cluster
metalctl machine ls --project $METAL_PROJECT_ID
# for each worker machine collect the information as follows
export NODE_ID=<worker-machine-id>
export NODE_HOSTNAME=$(metalctl machine describe $NODE_ID -o template --template '{{ .allocation.hostname }}')
export NODE_ASN=$(metalctl machine describe $NODE_ID -o template --template '{{ printf "%.0f" (index .allocation.networks 0).asn }}')
export NODE_ROUTER_ID=$(metalctl machine describe $NODE_ID -o template --template '{{ (index (index .allocation.networks 0).ips 0) }}')
# for each worker machine generate and apply the BGPPeer resource
cat <<EOF | kubectl --kubeconfig=capms-cluster.kubeconfig create -f -
apiVersion: metallb.io/v1beta2
kind: BGPPeer
metadata:
name: ${NODE_HOSTNAME}
namespace: metallb-system
spec:
holdTime: 1m30s
keepaliveTime: 0s
myASN: ${NODE_ASN}
nodeSelectors:
- matchExpressions:
- key: kubernetes.io/hostname
operator: In
values:
- ${NODE_HOSTNAME}
passwordSecret: {}
peerASN: ${NODE_ASN}
peerAddress: ${NODE_ROUTER_ID}
EOF
I need to know the Control Plane IP address in advance. Can I provide a static IP address in advance?
Yes, simply create a static IP address and set it to metalstackcluster/<name>.spec.controlPlaneIP
.
metalctl network ip create --name <name> --project $METAL_PROJECT_ID --type static
When generating your cluster, set POD_CIDR
to your desired value.
export POD_CIDR=["10.240.0.0/12"]