README ¶
Kubernetes Cloud Controller Manager for Equinix Metal
packet-ccm
is the Kubernetes CCM implementation for Equinix Metal. Read more about the CCM in the official Kubernetes documentation.
This repository is Maintained!
Requirements
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.
Version
Recommended versions of Equinix Metal CCM based on your Kubernetes version:
- Equinix Metal CCM version v0.0.4 supports Kubernetes version >=v1.10
- Equinix Metal CCM version v1.0.0+ supports Kubernetes version >=1.15.0
Deployment
TL;DR
- Set kubernetes binary arguments correctly
- Get your Equinix Metal project and secret API token
- Deploy your Equinix Metal project and secret API token to your cluster
- Deploy the CCM
- Deploy the load balancer (optional)
Kubernetes Binary Arguments
Control plane binaries in your cluster must start with the correct flags:
kubelet
: All kubelets in your cluster MUST set the flag--cloud-provider=external
. This must be done for every kubelet. Note that k3s sets its own CCM by default. If you want to use the CCM with k3s, you must disable the k3s CCM and enable this one, as--disable-cloud-controller --kubelet-arg cloud-provider=external
.kube-apiserver
andkube-controller-manager
must NOT set the flag--cloud-provider
. They then will use no cloud provider natively, leaving room for the Equinix Metal CCM.
WARNING: setting the kubelet flag --cloud-provider=external
will taint all nodes in a cluster with node.cloudprovider.kubernetes.io/uninitialized
.
The CCM itself will untaint those nodes when it initializes them.
Any pod that does not tolerate that taint will be unscheduled until the CCM is running.
You must set the kubelet flag the first time you run the kubelet. Stopping the kubelet, adding it after, and then restarting it will not work.
Kubernetes node names must match the device name
By default, the kubelet will name nodes based on the node's hostname. Equinix 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.
Get Equinix Metal Project ID and API Token
To run packet-ccm
, you need your Equinix Metal project ID and secret API key ID that your cluster is running in.
If you are already logged into the Equinix Metal portal, you can create one by clicking on your
profile in the upper right then "API keys".
To get your 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.
Deploy Project and API
Copy deploy/template/secret.yaml to someplace useful:
cp deploy/template/secret.yaml /tmp/secret.yaml
Replace the placeholder in the copy with your token. When you're done, the yaml
should look something like this:
apiVersion: v1
kind: Secret
metadata:
name: packet-cloud-config
namespace: kube-system
stringData:
cloud-sa.json: |
{
"apiKey": "abc123abc123abc123",
"projectID": "abc123abc123abc123"
}
Then apply the file via kubectl
, e.g.:
kubectl apply -f /tmp/secret.yaml`
You can confirm that the secret was created with the following:
$ kubectl -n kube-system get secrets packet-cloud-config
NAME TYPE DATA AGE
packet-cloud-config Opaque 1 2m
Deploy CCM
To apply the CCM itself, select your release and apply the manifest:
RELEASE=v2.0.0
kubectl apply -f https://github.com/packethost/packet-ccm/releases/download/${RELEASE}/deployment.yaml
Deploy Load Balancer
If you want load balancing to work as well, deploy the load balancer manifest:
kubectl apply -f https://github.com/packethost/packet-ccm/releases/download/${RELEASE}/loadbalancer.yaml
As of this writing, the load balancer is metallb. CCM provides the correct logic to manage the load balancer config.
You can deploy metallb on your own, and simply direct CCM to control a different configuration map, or
none at all. On startup and on each create or delete of a Service
that is of type=LoadBalancer
,
CCM checks for the existence of a ConfigMap
in the correct namespace.
- if loadbalancer management is disabled, do nothing
- if it finds no configmap, do nothing
- if it finds a configmap, configure it
See further in this document under loadbalancing, for details.
Logging
By default, ccm does minimal logging, relying on the supporting infrastructure from kubernetes. However, it does support
optional additional logging levels via the --v=<level>
flag. In general:
--v=2
: log most function calls for devices and facilities, when relevant logging the returned values--v=3
: log additional data when logging returned values, usually entire go structs--v=5
: log every function call, including those called very frequently
How It Works
The Kubernetes CCM for Equinix Metal deploys as a Deployment
into your cluster with a replica of 1
. It provides the following services:
- lists available zones, returning Equinix Metal regions
- lists and retrieves instances by ID, returning Equinix Metal servers
- manages load balancers
Facility
The Equinix Metal CCM works in one facility at a time. You can control which facility it works with as follows:
- If the environment variable
PACKET_FACILITY_NAME
is set, use that value. Else.. - If the config file has a field named
facility
, use that value. Else.. - Read the facility from the Equinix Metal metadata of the host where the CCM is running. Else..
- Fail.
The overrides of environment variable and config file are provided so that you can run the CCM on a node in a different facility, or even outside of Equinix Metal entirely.
BGP
The Equinix Metal CCM enables BGP for the project and enables it on all nodes as they come up. It sets the ASNs as follows:
- Node, a.k.a. local, ASN: 65000
- Peer Router ASN: 65530
These are the settings per Equinix Metal's BGP config, see here. It is not recommended to override them. However, the settings are set as follows:
- If the environment variables
PACKET_LOCAL_ASN
andPACKET_PEER_ASN
are set. Else... - If the config file has fields named
localASN
andpeerASN
. Else... - Use the above defaults.
In addition to enabling BGP and setting ASNs, the Equinix Metal CCM sets Kubernetes annotations on the nodes. It sets the following information:
packet.com/node.asn
- Node, or local, ASNpacket.com/peer.asns
- Peer ASNs, comma-separated if multiplepacket.com/peer.ips
- Peer IPs, comma-separated if multiple
These annotation names can be overridden, if you so choose. The settings are as follows:
- If the environment variables
PACKET_ANNOTATION_LOCAL_ASN
,PACKET_ANNOTATION_PEER_ASNS
,PACKET_ANNOTATION_PEER_IPS
are set. Else... - If the config file has files named
annotationLocalASN
,annotationPeerASNs
,annotationPeerIPs
. Else... - Use the above defaults.
Load Balancers
Equinix Metal does not offer managed load balancers like AWS ELB or GCP Load Balancers. Instead, Equinix Metal provides the following load-balancing options, both using Equinix Metal's Elastic IP.
For user-deployed Kubernetes Service
of type=LoadBalancer
, the Equinix Metal CCM uses BGP and
metallb to provide the equivalence of load balancing, without
requiring an additional managed service (or hop). BGP route advertisements enable Equinix Metal's network
to route traffic for your services at the Elastic IP to the correct host. This section describes how to use it, and how to
disable it.
For the control plane nodes, the Equinix Metal CCM uses static Elastic IP assignment, via the Equinix Metal API, to tell the Equinix Metal network which control plane node should receive the traffic. For more details on the control plane load-balancer, see this section.
By default, CCM controls the loadbalancer by updating the ConfigMap
named metallb-system:config
,
i.e. a ConfigMap
named config
in the metallb-system
namespace. This behaviour is controlled
in one of two ways:
- by the environment variable
PACKET_LB_CONFIGMAP
- by the property
loadbalancer-configmap
in the kubernetes secretpacket-cloud-config
For each, CCM's behaviour is as follows:
- if unset, default to
metallb-system:config
- if set to
<namespace>:<name>
, look for and manage aConfigMap
with name<name>
in namespace<namespace>
.You must include a namespace; there is no default namespace when providing a specificConfigMap
name. - if set to
disabled
, do not attempt to manage any config
Environment variable overrides setting in kubernetes secret; the secret will be checked only if the environment variable is unset. Only if both are unset will it default.
If the ConfigMap
is not disabled, then upon start, CCM does the following:
- Get the appropriate namespace and name of the
ConfigMap
, based on the rules above. - If the
ConfigMap
does not exist, do nothing more. - List each node in the cluster using a kubernetes node lister; for each:
- retrieve its BGP node ASN, peer IPs and peer ASNs
- add them to the metallb
ConfigMap
with a kubernetes selector ensuring that the peer is only for this node
- Start a kubernetes informer for node changes, responding to node addition and removals
- Node addition: ensure the node is in the metallb
ConfigMap
as above - Node deletion: remove the node from the metallb
ConfigMap
- Node addition: ensure the node is in the metallb
- List all of the services in the cluster using a kubernetes service lister; for each:
- If the service is not of
type=LoadBalancer
, ignore it - If a facility-specific
/32
IP address reservation tagged withusage="packet-ccm-auto"
andservice="<service-hash>"
exists, and it already has that IP address affiliated with it, it is ready; ignore - If the service does not have that IP affiliated with it, add it to the service spec and ensure it is in the pools of the metallb
ConfigMap
withauto-assign: false
- If the service is not of
- Start a kubernetes informer for service changes, responding to service addition and removals
- Service addition: create a facility-specific
/32
IP address reservation tagged withusage="packet-ccm-auto"
andservice="<service-hash>"
; if it is ready immediately, add it to the service spec and ensure is in the pools of the metallbConfigMap
withauto-assign: false
- Service deletion: find the
/32
IP address on the service spec and remove it; remove from theConfigMap
- Service addition: create a facility-specific
- Start an independent loop that checks every 30 seconds (configurable) for IP address reservations that are tagged with
usage="packet-ccm-auto"
andservice="<service-hash>"
but not on any services. If it finds one:- If a service exists that matches the
<service-hash>
, that is an indication that an IP address reservation request was made, not completed at request time, and now is available. Add the IP to the service spec and ensure is in the pools of the metallbConfigMap
withauto-assign: false
- If no service exists that is missing an IP, or none with a matching hash, delete the IP reservation
- If a service exists that matches the
At no point does CCM itself deploy the load-balancer or any part of it, including the ConfigMap
. It only
modifies an existing ConfigMap
. This can be deployed by the administrator separately, using the manifest
provided in the releases page, or by any other manner.
In all cases of tagging the IP address reservation, we tag the IP reservation with usage="packet-ccm-auto"
and service="<service-hash>"
where <service-hash>
is the sha256 hash of <namespace>.<service-name>
. We do this so that the name of the service does not leak out to Equinix Metal itself.
IP addresses always are created /32
, and are tagged as "packet-ccm-auto"
Language
In order to ease understanding, we use several different terms for an IP address:
- Requested: A dedicated
/32
IP address has been requested for the service from Equinix Metal. It may be returned immediately, or it may need to wait for Equinix Metal intervention. - Reserved: A dedicated
/32
IP address has been reserved for the service from Equinix Metal. - Assigned: The dedicated IP address has been marked on the service as
Service.Spec.LoadBalancerIP
as assigned. - Mapped: The dedicated IP address has been added to the metallb
ConfigMap
as available.
From Equinix Metal's perspective, the IP reservation is either Requested or Reserved, but not both. For the load balancer to work, the IP address needs to be all of: Reserved, Assigned, Mapped.
Elastic IP as Control Plane Endpoint
It is a common procedure to use Elastic IP as Control Plane endpoint in order to have a static endpoint that you can use from the outside, or when configuring the advertise address for the kubelet.
In CAPP we create one for every cluster for example. Equinix Metal does not provide an as a service load balancer it means that in some way we have to check if the Elastic IP is still assigned to an healthy control plane.
In order to do so CCM implements a reconciliation loop that checks if the
Control Plane Endpoint respond correctly using the /healthz
endpoint.
When the healthcheck fails CCM looks for the other Control Planes, when it gets a healthy one it move the Elastic IP to the new device.
This feature by default is disabled and it assumes that the ElasticIP for the cluster is available and tagged with an arbitrary label. CAPP for example uses:
cluster-api-provider-packet:cluster-id:<clusterName>
When the tag is present CCM will filter the available elastic ip for the specified project via tag to lookup the one used by your cluster.
It will check the correct answer, when it stops responding the IP reassign logic will start.
The logic will circle over all the available control planes looking for an active api server. As soon as it can find one the Elastic IP will be unassigned and reassigned to the working node.
How the Elastic IP Traffic is Routed
Of course, even if the router sends traffic for your Elastic IP (EIP) to a given control plane node, that node needs to know to process the traffic. Rather than require you to manage the IP assignment on each node, which can lead to some complex timing issues, the Equinix Metal CCM handles it for you.
The structure relies on the already existing default/kubernetes
service, which
creates an Endpoints
structure that includes all of the functioning control plane
nodes. The CCM does the following on each loop:
- Finds all of the endpoints for
default/kubernetes
and creates or updates parallel endpoints inkube-system/packet-ccm-kubernetes-external
- Creates a service named
kube-system/packet-ccm-kubernetes-external
with the following settings:type=LoadBalancer
spec.loadBalancerIP=<eip>
status.loadBalancer.ingress[0].ip=<eip>
metadata.annotations["metallb.universe.tf/address-pool"]=disabled-metallb-do-not-use-any-address-pool
This has the following effect:
- the annotation prevents metallb from trying to manage it
- the
spec.loadBalancerIP
andstatus.loadBalancer.ingress[0].ip
cause kube-proxy to set up routes on all of the nodes - the endpoints cause the traffic to be routed to the control plane nodes
Note that we wanted to just set externalIPs
on the original default/kubernetes
, but that would prevent traffic
from being routed to it from the control nodes, due to iptables rules. LoadBalancer types allow local traffic.
Running Locally
You can run the CCM locally on your laptop or VM, i.e. not in the cluster. This dramatically speeds up development. To do so:
- Deploy everything except for the
Deployment
and, optionally, theSecret
- Build it for your local platform
make build
- Set the environment variable
CCM_SECRET
to a file with the secret contents as a json, i.e. the content of the secret'sstringData
, e.g.CCM_SECRET=ccm-secret.yaml
- Set the environment variable
KUBECONFIG
to a kubeconfig file with sufficient access to the cluster, e.g.KUBECONFIG=mykubeconfig
- Set the environment variable
PACKET_FACILITY_NAME
to the correct facility where the cluster is running, e.g.PACKET_FACILITY_NAME=EWR1
- If you want to run the loadbalancer, and it is not yet deployed, run
kubectl apply -f deploy/loadbalancer.yaml
- If you want to use a managed Elastic IP for the control plane, create one using the Equinix Metal API or Web UI, tag it uniquely, and set the environment variable
PACKET_EIP_TAG=<tag>
- Run the command, e.g.:
PACKET_FACILITY_NAME=${PACKET_FACILITY_NAME} dist/bin/packet-cloud-controller-manager-darwin-amd64 --cloud-provider=packet --leader-elect=false --allow-untagged-cloud=true --authentication-skip-lookup=true --provider-config=$CCM_SECRET --kubeconfig=$KUBECONFIG
For lots of extra debugging, add --v=2
or even higher levels, e.g. --v=5
.
Documentation ¶
There is no documentation for this package.