metal-ccm
is the Kubernetes CCM implementation for metal. Read more about the CCM here.
At the current state of Kubernetes, running the CCM requires a few things. Please read through the requirements carefully as they are critical to running the CCM on a Kubernetes cluster.
Recommended versions of metal CCM based on your Kubernetes version:
- metal CCM version v0.0.1 supports Kubernetes version >=v1.14
All kubelet
s in your cluster MUST set the flag --cloud-provider=external
. kube-apiserver
and kube-controller-manager
must NOT set the flag --cloud-provider
which will default them to use no cloud provider natively.
WARNING: setting the kubelet flag --cloud-provider=external
will taint all nodes in a cluster with node.cloudprovider.kubernetes.io/uninitialized
.
The CCM will then untaint those nodes when it initializes them.
Any pod that does not tolerate that taint will be unscheduled until the CCM is running.
By default, the kubelet will name nodes based on the node's hostname. metal's device hostnames are set based on the name of the device. It is important that the Kubernetes node name matches the device name.
Currently metal-ccm
implements:
- nodecontroller - updates nodes with cloud provider specific labels and addresses
To run metal-ccm
, you need your metal api key and project ID that your cluster is running in.
If you are already logged in, you can create one by clicking on your profile in the upper right then "API keys".
To get project ID click into the project that your cluster is under and select "project settings" from the header.
Under General you will see "Project ID". Once you have this information you will be able to fill in the config needed for the CCM.
Copy v0.0.1/secret.yaml to releases/metal-cloud-config.yaml:
cp v0.0.1/secret.yaml ./metal-cloud-config.yaml
Replace the placeholder in the copy with your token. When you're done, the metal-cloud-config.yaml should look something like this:
apiVersion: v1
kind: Secret
metadata:
name: metal-cloud-config
namespace: kube-system
stringData:
apiUrl: "https://metal....."
apiHMAC: "adslkfjasldkfj"
apiKey: "abc123abc123abc123"
projectID: "abc123abc123abc123"
Then run:
kubectl apply -f metal-cloud-config.yaml`
You can confirm that the secret was created in the kube-system
with the following:
$ kubectl -n kube-system get secrets metal-cloud-config
NAME TYPE DATA AGE
metal-cloud-config Opaque 1 2m
You can apply the rest of the CCM by running:
kubectl apply -f v0.0.1/deployment.yaml