DEV Community

Ali Ilman
Ali Ilman

Posted on • Originally published at ali-ilman.com

What is a Kubernetes Object

A Kubernetes object is something that exists in a Kubernetes cluster. There are configuration 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.

To specify an object type in a Kubernetes config file, we use the kind property.

kind: Pod
Enter fullscreen mode Exit fullscreen mode

Resources

Latest comments (0)