Definition:
- Persistent entities in the Kubernetes system. Kubernetes uses these entities to represent the state of your cluster.
- Idenfied:
- unique name, can only have 1 object of same name at any moment
- unique identifier, generated by k8s
- Has:
- Object spec: desired state
- Object status: current state of the object, Control Plane continually and actively manages every object’s actual state to match the desured state
- required fields (A-KMS):
apiVersion
kind: kind of object
metadata: data to helps identify
spec: desure state, different for every object
two