Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is kind in kubernetes YAML meant?

Tags:

kubernetes

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

like image 775
june alex Avatar asked Oct 16 '25 17:10

june alex


1 Answers

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.

like image 136
Krishna Chaurasia Avatar answered Oct 18 '25 16:10

Krishna Chaurasia