Process Flow - Creating custom namespaces
Write YAML file for Namespace
Run kubectl apply -f namespace.yaml
Kubernetes API Server receives request
Namespace resource created in cluster
kubectl get namespaces shows new namespace
Use namespace in pods/deployments
This flow shows how you create a custom namespace by writing a YAML file, applying it with kubectl, and then using it in your cluster.