masterclass of creating all the resources in k8s using imperative commands code example
Example 1: kubectl create pod imperative command
kubectl run <pod-name> --image=<image> --restart=Never
Example 2: imperative command kubectl update replicas count deployment
kubectl edit deployment/nginx-deployment