Create a namespace with your name and assigne one dummy resourcesquota to it and deploy a app of mysql in your namespace.
Limited Time Offer!
For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly.
Master DevOps, SRE, DevSecOps Skills!
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