Understanding CRDs
Explore the role of CustomResourceDefinitions in extending Kubernetes APIs. Understand their schema, versioning, scope, and how they dynamically register with the kube-apiserver without downtime. Learn the differences between CRDs and ConfigMaps to manage your custom Kubernetes resources effectively.
We'll cover the following...
More about CRDs
With CRDs, we can define our own API schema and plumb them to the kube-apiserver at any time. No broken changes in the kube-apiserver are made. We don’t need to restart or recompile the kube-apiserver. They work pretty much like add-on plugins, in the sense that we can apply or remove them whenever we want. Super handy!
What does a CRD look like?
To better understand CRDs, let’s see what one looks like.
Now, let’s try to break down the definitions above so that we can better understand every field in a CRD. ...