Computer scienceSystem administration and DevOpsKubernetes

Utilization of resources in a pod

Computations

Report a typo

Compute CPU resource request and limit for the following pod:

apiVersion: v1
kind: Pod
metadata:
  name: myapp
spec:
  containers:
  - name: container1
    image: app1
    resources:
      requests:
        memory: "32Mi"
        cpu: "200m"
      limits:
        memory: "64Mi"
        cpu: "250m"
  - name: container2
    image: app2
    resources:
      requests:
        memory: "64Mi"
        cpu: "200m"
      limits:
        memory: "64Mi"
        cpu: "250m"

Please write your answer in CPU millicores. Write only the numerical value for each container with one space separation between them.

For example:

100m 200m
Enter a short text
___

Create a free account to access the full topic