Skip to main content

KRM's Wire and At-Rest Format

Kubernetes uses KRM and its API wire format not just in transit, but also at rest, when storing a resource

A document defining the desired state of a capability and capturing its actual state. See also Kubernetes Resource Model (KRM).
on disk, in version control, or in other storage. Rather than define an additional envelope structure for the serialization format to represent request parameters, the resource body has sufficient information to construct API calls to operate on the resource. An identical resource body is returned by a GET API call and can be stored and processed by other tools.
For example, the resource, now called manifest, can be captured as past revision of a resource, recorded in an asset inventory system for audit purposes, or used as backup for disaster recovery. With immutable infrastructure the manifest can be promoted from development to test, staging, up to production.

All KRM-compatible client tools share a common pattern, spearheaded by kubectl reference implementation: the clients read the at-rest-manifest, parse the apiVersion, kind, namespace, and name fields from the body, and finally construct the API URL and POSTs the resource to the API server. The API server endpoint and credentials are identified from the applicable context of a kubeconfig file1.

Footnotes

  1. Using the Kubernetes Resource Model for Declarative Configuration