Kubernetes Manifests

From NovaOrdis Knowledge Base
Revision as of 00:40, 7 September 2019 by Ovidiu (talk | contribs) (→‎apiVersion)
Jump to navigation Jump to search

Internal

Overview

A manifest expresses the desired state of a specific component of the application, and it is POSTed to the API server to instruct the cluster to adjust the corresponding current state. The steps involved by processing a manifest are described here:

Declarative versus Imperative Approach

Manifest files can be generated with kubectl kustomize.

TODO

Commonality. There are common elements with the same semantics for all manifests (e.g. metadata.name). Address them here in a common section, and link from individual "kinds" to here.

Common Elements

apiVersion

The apiVersion field contains the API group and the API version of the resource's specification. Normally, the format is:

apiVersion: <group>/<version>

However, some of the most common resources are defined in a special API group called the core group. For those resources, we can omit the <group> part when specifying apiVersion. While a StorageClass object should be specified as apiVersion: storage.k8s.io/v1, a pod, whose corresponding type is defined in the core group, should be specified as apiVersion: v1.

kind

metadata

Manifest Metadata

spec

Manifest Operations