What is a Kubernetes Object
Ali Ilman

Ali Ilman @thealiilman

Location:
Malaysia
Joined:
Aug 10, 2017

What is a Kubernetes Object

Publish Date: Aug 17 '20
20 0

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

Comments 0 total

    Add comment