When it comes to Kubernetes objects, everything will depend on the type of workload or application that you are trying to build the infrastructure for. Therefore, rather than designing or architecting any particular customization, we will go through how to configure the most commonly used and helpful specifications on each object.
Customizing kube objects
Namespacing
Kubernetes offers namespaces as a way of segmenting your cluster into multiple virtual clusters. Think of it as a way of segmenting your cluster's resources and objects and putting them in logical isolation from each other.
Namespaces will only be used in very specific scenarios, but Kubernetes comes with some predefined namespaces:
- Default: This is the...