A Kubernetes object is something that exists in a Kubernetes cluster. There are config files we can write, and these files are used to create Kubernetes objects.

In Kubernetes, there are object types. An object type has its own purpose. An example of an object type is the Pod object type. Pod is used to run a container.

How do we specify an object type in a Kubernetes config file?

We use the kind property.

kind: Pod

Resources