Kubernetes offers a variety of features that can help you control how resources are allocated in your cluster. This lab will allow you to build your experience with some of these features by solving problems that might arise in a real-world cluster.
Learning Objectives
Successfully complete this lab by achieving the following learning objectives:
- Configure Resource Requests for a Deployment
There is a Deployment called
royal-jelly
in thehive
Namespace.Add resource requests to this Deployment’s containers. The container should request
128Mi
memory and250m
CPU.- Configure Resource Limits for a Deployment
Add resource limits to the Deployment called
royal-jelly
in thehive
Namespace.For the containers in this Deployment, the limits should be
256Mi
for memory and500m
for CPU.- Create a ResourceQuota for a Namespace
Use a quota to limit the resources that can be used in the
hive
Namespace.The quota should allow total resource requests in the Namespace up to
1Gi
for memory and1
CPU.For resource limits, the quota should allow up to
2Gi
for memory and2
CPU.Note: The ResourceQuota admission controller is already enabled in the environment. You do not need to enable it.