cancel
Showing results for 
Search instead for 
Did you mean: 
dkcbk
Flight Engineer
Flight Engineer
  • 684 Views

Requests instead of limits ResourceQuota in DO280 Lab 6 - task 6.2

Hi.

There is something confusing in Chapter 6 (Controlling Pod Scheduling) of DO280 course (Lab 6 - task 6.2).

Instructions: "As the admin user, implement a quota named review-quota on the schedule-review
project. Limit the schedule-review project to a maximum of 1 full CPU, 2G of memory,
and 20 pods."

I suppose it is asking to set limits.cpu and limits.memory. But there is requests.cpu and requests.memory quota in a provided solution (--hard cpu=xxx,memory=xxx is the same as --hard requests.cpu=xxx,requests.memory=xxx).

oc create quota review-quota --hard cpu="1",memory="2G",pods="20"

Labels (1)
0 Kudos
1 Reply
tonejito
Mission Specialist
Mission Specialist
  • 536 Views

The limit statement on the review-quota lab (ch06s07) is related to establishing a hard limit for the CPU, memory, and number of pods.

You can try the following command with the --dry-run=client option to examine the resource manifest that would be created.

Screenshot from 2022-05-18 12-07-52 - ch06s07 - review-quota.png

 

 

0 Kudos
Join the discussion
You must log in to join this conversation.