> ## Documentation Index
> Fetch the complete documentation index at: https://docs.siderolabs.com/llms.txt
> Use this file to discover all available pages before exploring further.

> CRICustomizationConfig configures the CRI containerd instance.

# CRICustomizationConfig

```yaml theme={null}
apiVersion: v1alpha1
kind: CRICustomizationConfig
name: enable-metrics # Name of the CRI customization.
content: | # CRI containerd configuration fragment in TOML format.
    [metrics]
      address = "0.0.0.0:11234"
```

<table>
  <thead>
    <tr>
      <th>Field</th>
      <th>Type</th>
      <th>Description</th>
      <th>Value(s)</th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td>`name`</td>
      <td>string</td>
      <td>Name of the CRI customization.<br /><br />Customizations are merged with physical CRI configuration parts in<br />lexicographical order by name. The legacy<br />`/etc/cri/conf.d/20-customization.part` machine file is included under<br />the reserved name `customization`.<br /><br />Applying, updating, or removing a customization restarts CRI automatically.</td>

      <td />
    </tr>

    <tr>
      <td>`content`</td>
      <td>string</td>
      <td>CRI containerd configuration fragment in TOML format.</td>

      <td />
    </tr>
  </tbody>
</table>
