Create a namespace with your name and assigne one dummy resourcesquota to it and deploy a app of mysql in your namespace.

Create a namespace with your name and assigne one dummy resourcesquota to it and deploy a app of mysql in your namespace.

created the name space
kubectl create ns ajins

created a ode in that name space
kubectl create deployment ajidep –image=mysql -n ajins

applied the resourses
kubectl apply -f rs.yaml –namespace=ajins

kubectl get resourcequota mem-cpu-demo –namespace=ajins
NAME AGE REQUEST LIMIT
mem-cpu-demo 22s requests.cpu: 0/1, requests.memory: 0/1Gi limits.cpu: 0/2, limits.memory: 0/2Gi