Object Manifest in Kubernetes
From the Kubernetes Essentials cheat sheet ยท Architecture and Objects ยท verified Aug 2026
Object Manifest
Declare desired state with apiVersion, kind, metadata, and spec.
yaml
apiVersion: v1
kind: Pod
metadata:
name: web
spec:
containers:
- name: web
image: nginx:1.29๐ apiVersion and kind select the resource schema
๐ metadata.name identifies the object
๐ spec describes desired state
๐ฏ Store production manifests in version control
manifestyamlobjects
Continue with Kubernetes Essentials
Save the full cheat sheet or work through every related task.