What is a Kubernetes Object

thealiilman

Ali Ilman

Posted on August 17, 2020

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

πŸ’– πŸ’ͺ πŸ™… 🚩
thealiilman
Ali Ilman

Posted on August 17, 2020

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related