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

> KubeInlineManifestConfig configures a Kubernetes manifest to be applied to the cluster.

# KubeInlineManifestConfig

```yaml theme={null}
apiVersion: v1alpha1
kind: KubeInlineManifestConfig
name: namespace-ci # Name of manifest.
manifest: |- # Kubernetes manifest definition, it is supplied as a raw string.
    apiVersion: v1
    kind: Namespace
    metadata:
      name: ci
```

<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 manifest.</td>

      <td />
    </tr>

    <tr>
      <td>`manifest`</td>
      <td>string</td>
      <td>Kubernetes manifest definition, it is supplied as a raw string.<br />It might contain a set of YAML documents separated by `---`.<br />The format matches what can be supplied as `kubectl apply -f <file>`.</td>

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