Customizing the manifests
About customizing manifests
We provide a number of manifests to make deployment of Calico easy. You can optionally modify the manifests before applying them. Or you can modify the manifest and reapply it to change settings as needed.
Refer to the section that corresponds to the manifest you wish to modify for more details.
Customizing Calico manifests
About customizing Calico manifests
Each manifest contains all the necessary resources for installing Calico on each node in your Kubernetes cluster.
It installs the following Kubernetes resources:
- Installs the
calico/node
container on each host using a DaemonSet. - Installs the Calico CNI binaries and network config on each host using a DaemonSet.
- Runs
calico/kube-controllers
as a deployment. - The
calico-etcd-secrets
secret, which optionally allows for providing etcd TLS assets. - The
calico-config
ConfigMap, which contains parameters for configuring the install.
The sections that follow discuss the configurable parameters in greater depth.
Configuring the pod IP range
Calico IPAM assigns IP addresses from IP pools.
To change the default IP range used for pods, modify the CALICO_IPV4POOL_CIDR
section of the calico.yaml
manifest. For more information, see
Configuring calico/node.
Configuring IP-in-IP
By default, the manifests enable IP-in-IP encapsulation across subnets. Many users may want to disable IP-in-IP encapsulation, such as under the following circumstances.
- Their cluster is running in a properly configured AWS VPC.
- All their Kubernetes nodes are connected to the same layer 2 network.
- They intend to use BGP peering to make their underlying infrastructure aware of pod IP addresses.
To disable IP-in-IP encapsulation, modify the CALICO_IPV4POOL_IPIP
section of the
manifest. For more information, see Configuring calico/node.
Configuring etcd
By default, these manifests do not configure secure access to etcd and assume an etcd proxy is running on each host. The following configuration options let you specify custom etcd cluster endpoints as well as TLS.
The following table outlines the supported ConfigMap
options for etcd:
Option | Description | Default |
---|---|---|
etcd_endpoints | Comma-delimited list of etcd endpoints to connect to. | http://127.0.0.1:2379 |
etcd_ca | The file containing the root certificate of the CA that issued the etcd server certificate. Configures calico/node , the CNI plugin, and the Kubernetes controllers to trust the signature on the certificates provided by the etcd server. |
None |
etcd_key | The file containing the private key of the calico/node , the CNI plugin, and the Kubernetes controllers client certificate. Enables these components to participate in mutual TLS authentication and identify themselves to the etcd server. |
None |
etcd_cert | The file containing the client certificate issued to calico/node , the CNI plugin, and the Kubernetes controllers. Enables these components to participate in mutual TLS authentication and identify themselves to the etcd server. |
None |
To use these manifests with a TLS-enabled etcd cluster you must do the following:
-
Download the v3.2 manifest that corresponds to your installation method.
Calico for policy and networking
curl \ https://just-master--zealous-perlman-827aaa.netlify.com/v3.2/getting-started/kubernetes/installation/hosted/calico.yaml \ -O
Calico for policy and flannel for networking
curl \ https://just-master--zealous-perlman-827aaa.netlify.com/v3.2/getting-started/kubernetes/installation/hosted/canal/canal.yaml \ -O
-
Within the
ConfigMap
section, uncomment theetcd_ca
,etcd_key
, andetcd_cert
lines so that they look as follows.etcd_ca: "/calico-secrets/etcd-ca" etcd_cert: "/calico-secrets/etcd-cert" etcd_key: "/calico-secrets/etcd-key"
-
Ensure that you have three files, one containing the
etcd_ca
value, another containing theetcd_key
value, and a third containing theetcd_cert
value. -
Using a command like the following to strip the newlines from the files and base64-encode their contents.
cat <file> | base64 -w 0
-
In the
Secret
namedcalico-etcd-secrets
, uncommentetcd_ca
,etcd_key
, andetcd_cert
and paste in the appropriate base64-encoded values.apiVersion: v1 kind: Secret type: Opaque metadata: name: calico-etcd-secrets namespace: kube-system data: # Populate the following files with etcd TLS configuration if desired, but leave blank if # not using TLS for etcd. # This self-hosted install expects three files with the following names. The values # should be base64 encoded strings of the entire contents of each file. etcd-key: LS0tLS1CRUdJTiB...VZBVEUgS0VZLS0tLS0= etcd-cert: LS0tLS1...ElGSUNBVEUtLS0tLQ== etcd-ca: LS0tLS1CRUdJTiBD...JRklDQVRFLS0tLS0=
-
Apply the manifest.
Calico for policy and networking
kubectl apply -f calico.yaml
Calico for policy and flannel for networking
kubectl apply -f canal.yaml
Authorization options
Calico’s manifests assign its components one of two service accounts. Depending on your cluster’s authorization mode, you’ll want to back these service accounts with the necessary permissions.
Other configuration options
The following table outlines the remaining supported ConfigMap
options.
Option | Description | Default |
---|---|---|
calico_backend | The backend to use. | bird |
cni_network_config | The CNI Network config to install on each node. Supports templating as described below. |
CNI network configuration template
The cni_network_config
configuration option supports the following template fields, which will
be filled in automatically by the calico/cni
container:
Field | Substituted with |
---|---|
__KUBERNETES_SERVICE_HOST__ |
The Kubernetes service Cluster IP, e.g 10.0.0.1 |
__KUBERNETES_SERVICE_PORT__ |
The Kubernetes service port, e.g., 443 |
__SERVICEACCOUNT_TOKEN__ |
The service account token for the namespace, if one exists. |
__ETCD_ENDPOINTS__ |
The etcd endpoints specified in etcd_endpoints . |
__KUBECONFIG_FILEPATH__ |
The path to the automatically generated kubeconfig file in the same directory as the CNI network configuration file. |
__ETCD_KEY_FILE__ |
The path to the etcd key file installed to the host. Empty if no key is present. |
__ETCD_CERT_FILE__ |
The path to the etcd certificate file installed to the host, empty if no cert present. |
__ETCD_CA_CERT_FILE__ |
The path to the etcd certificate authority file installed to the host. Empty if no certificate authority is present. |
Customizing application layer policy manifests
About customizing application layer policy manifests
Instead of installing from our pre-modified Istio manifests, you may wish to customize your Istio install or use a different Istio version. This section walks you through the necessary changes to a generic Istio install manifest to allow application layer policy to operate.
Sidecar injector
The standard Istio manifests for the sidecar injector include a ConfigMap that contains the template used when adding pods to the cluster. The template adds an init container and the Envoy sidecar. Application layer policy requires an additional lightweight sidecar called Dikastes which receives Calico policy from Felix and applies it to incoming connections and requests.
If you haven’t already done so, download an Istio release and untar it to a working directory.
Open the install/kubernetes/istio-demo-auth.yaml
file in an
editor, and locate the istio-sidecar-injector
ConfigMap. In the existing istio-proxy
container, add a new volumeMount
.
- mountPath: /var/run/dikastes
name: dikastes-sock
Add a new container to the template.
- name: dikastes
image: quay.io/calico/dikastes:v3.2.1
args: ["/dikastes", "server", "-l", "/var/run/dikastes/dikastes.sock", "-d", "/var/run/felix/nodeagent/socket", "--debug"]
volumeMounts:
- mountPath: /var/run/dikastes
name: dikastes-sock
- mountPath: /var/run/felix
name: felix-sync
Add two new volumes.
- name: dikastes-sock
emptyDir:
medium: Memory
- name: felix-sync
flexVolume:
driver: nodeagent/uds
The volumes you added are used to create Unix domain sockets that allow communication between Envoy and Dikastes and between Dikastes and Felix. Once created, a Unix domain socket is an in-memory communications channel. The volumes are not used for any kind of stateful storage on disk.
Refer to the Calico ConfigMap manifest for an example with the above changes.