What is kind in kubernetes YAML meant?

3/15/2021

I'm very new to kubernetes .What is meant for kind: Deployment?. What are the different kind. Is there any document available for this?

-- june alex
kubernetes

1 Answer

3/15/2021

kind represents the type of Kubernetes objects to be created while using the yaml file.

kind: Deployment represents the Kubernetes Deployment object.

You can use the following command to view different supported objects:

kubectl api-resources

You can also review the API reference for detailed overview regarding the Kubernetes objects.

-- Krishna Chaurasia
Source: StackOverflow