---
title: "Customize Calico configuration"
description: "Customize a Calico Open Source on-premises installation before applying it — IP pools, BGP, MTU, and other Installation resource fields."
product: "Calico Open Source"
version: "3.32 (latest)"
section: "Installing and upgrading"
canonical_url: "https://docs.tigera.io/calico/latest/getting-started/kubernetes/self-managed-onprem/config-options"
---

# Customize Calico configuration

## Big picture

Perform common customizations of a Calico installation.

## Concepts

### Calico operator

Calico is installed by an operator which manages the installation, upgrade, and general lifecycle of a Calico cluster. The operator is installed directly on the cluster as a Deployment, and is configured through one or more custom Kubernetes API resources.

### Calico manifests

Calico can also be installed using raw manifests as an alternative to the operator. The manifests contain the necessary resources for installing Calico on each node in your Kubernetes cluster. Using manifests is not recommended as they cannot automatically manage the lifecycle of the Calico as the operator does. However, manifests may be useful for clusters that require highly specific modifications to the underlying Kubernetes resources.

## How to

<!-- tabs -->

**Tab: Operator**

### About customizing an operator install

Operator installations read their configuration from a specific set of Kubernetes APIs. These APIs are installed on the cluster as part of `tigera-operator.yaml` in the `operator.tigera.io/v1` API group.

- [Installation](https://docs.tigera.io/calico/latest/reference/installation/api.md#installation): a singleton resource with name "default" that configures common installation parameters for a Calico cluster.
- [APIServer](https://docs.tigera.io/calico/latest/reference/installation/api.md#installation): a singleton resource with name "default" that configures installation of the Calico API server extension.

### Configure the pod IP range

For many environments, Calico will auto-detect the correct pod IP range to use, or select an unused range on the cluster.

You can select a specific pod IP range by modifying the `spec.calicoNetwork.ipPools` array in the Installation API resource.

```yaml
kind: Installation
apiVersion: operator.tigera.io/v1
metadata:
  name: default
spec:
  calicoNetwork:
    ipPools:
      - cidr: 198.51.100.0/24
```

:::

### Use VXLAN

You can enable VXLAN in a cluster by setting the option on your IPv4 pool. You can also disable BGP via the `spec.calicoNetwork.bgp` field.

```yaml
kind: Installation
apiVersion: operator.tigera.io/v1
metadata:
  name: default
spec:
  calicoNetwork:
    bgp: Disabled
    ipPools:
      - cidr: 198.51.100.0/24
        encapsulation: VXLAN
```

**Tab: Manifest**

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.

### 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.

### Configure the pod IP range

Calico IPAM assigns IP addresses from [IP pools](https://docs.tigera.io/calico/latest/reference/resources/ippool.md).

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](https://docs.tigera.io/calico/latest/reference/configure-calico-node.md).

## 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](https://docs.tigera.io/calico/latest/reference/public-cloud/aws.md).
- 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](https://docs.tigera.io/calico/latest/reference/configure-calico-node.md).

## Switching from IP-in-IP to VXLAN

By default, the Calico manifests enable IP-in-IP encapsulation. If you are on a network that blocks IP-in-IP, such as Azure, you may wish to switch to [Calico's VXLAN encapsulation mode](https://docs.tigera.io/calico/latest/networking/configuring/vxlan-ipip.md). To do this at install time (so that Calico creates the default IP pool with VXLAN and no IP-in-IP configuration has to be undone):

- Start with one of the [Calico for policy and networking](https://docs.tigera.io/calico/latest/getting-started/kubernetes/self-managed-onprem/config-options.md) manifests.

- Replace environment variable name `CALICO_IPV4POOL_IPIP` with`CALICO_IPV4POOL_VXLAN`. Leave the value of the new variable as "Always".

- Optionally, (to save some resources if you're running a VXLAN-only cluster) completely disable Calico's BGP-based networking:

  - Replace `calico_backend: "bird"` with `calico_backend: "vxlan"`. This disables BIRD.
  - Comment out the line `- -bird-ready` and `- -bird-live` from the calico/node readiness/liveness check (otherwise disabling BIRD will cause the readiness/liveness check to fail on every node):

```yaml
livenessProbe:
  exec:
    command:
      - /bin/calico-node
      - -felix-live
      - -bird-live
readinessProbe:
  exec:
    command:
      - /bin/calico-node
        - -bird-ready
      - -felix-ready
```

For more information on calico/node's configuration variables, including additional VXLAN settings, see [Configuring calico/node](https://docs.tigera.io/calico/latest/reference/configure-calico-node.md).

> **SECONDARY:** The `CALICO_IPV4POOL_VXLAN` environment variable only takes effect when the first calico/node to start creates the default IP pool. It has no effect after the pool has already been created. To switch to VXLAN mode after installation time, use calicoctl to modify the [IPPool](https://docs.tigera.io/calico/latest/reference/resources/ippool.md) resource.

## 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](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:

1. Download the v3.32 manifest that corresponds to your installation method.

   **Calico for policy and networking**

   ```bash
   curl https://raw.githubusercontent.com/projectcalico/calico/v3.32.1/manifests/calico-etcd.yaml -O
   ```

   **Calico for policy and flannel for networking**

   ```bash
   curl https://raw.githubusercontent.com/projectcalico/calico/v3.32.1/manifests/canal.yaml -O
   ```

2. Within the `ConfigMap` section, uncomment the `etcd_ca`, `etcd_key`, and `etcd_cert` lines so that they look as follows.

   ```yaml
   etcd_ca: '/calico-secrets/etcd-ca'
   etcd_cert: '/calico-secrets/etcd-cert'
   etcd_key: '/calico-secrets/etcd-key'
   ```

3. Ensure that you have three files, one containing the `etcd_ca` value, another containing the `etcd_key` value, and a third containing the `etcd_cert` value.

4. Using a command like the following to strip the newlines from the files and base64-encode their contents.

   ```bash
   cat <file> | base64 -w 0
   ```

5. In the `Secret` named `calico-etcd-secrets`, uncomment `etcd_ca`, `etcd_key`, and `etcd_cert` and paste in the appropriate base64-encoded values.

   ```yaml
   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=
   ```

6. Apply the manifest.

   **Calico for policy and networking**

   ```bash
   kubectl apply -f calico.yaml
   ```

   **Calico for policy and flannel for networking**

   ```bash
   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. |

## 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.

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](https://github.com/istio/istio/releases) 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`.

```yaml
- mountPath: /var/run/dikastes
  name: dikastes-sock
```

Add a new container to the template.

```yaml
      - name: dikastes
        image: calico/dikastes:v3.32.1
        args: ["server", "-l", "/var/run/dikastes/dikastes.sock", "-d", "/var/run/felix/nodeagent/socket"]
        securityContext:
          allowPrivilegeEscalation: false
        livenessProbe:
          exec:
            command:
            - /healthz
            - liveness
          initialDelaySeconds: 3
          periodSeconds: 3
        readinessProbe:
          exec:
            command:
            - /healthz
            - readiness
          initialDelaySeconds: 3
          periodSeconds: 3
        volumeMounts:
        - mountPath: /var/run/dikastes
          name: dikastes-sock
        - mountPath: /var/run/felix
          name: felix-sync
```

Add two new volumes.

```yaml
- name: dikastes-sock
  emptyDir:
    medium: Memory
- name: felix-sync
  csi:
    driver: 'csi.tigera.io'
```

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](https://raw.githubusercontent.com/projectcalico/calico/v3.32.1/manifests/alp/istio-inject-configmap-1.4.2.yaml) for an example with the above changes.

<!-- /tabs -->
