where can you find kubernetes REST API reference?
The main reference link is available here
https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.27/
Some common ones are found here.
If you're looking for cronjob, spec then you can quickly refer to it here.
https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.27/#jobspec-v1-batch
As you may have notice if you're going through the deployment spec, it also has an attribute of type pod template spec - which is the template used by POD.
https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.27/#podtemplate-v1-core
Comments