Computer scienceSystem administration and DevOpsKubernetesRunning applications on Kubernetes

Utilization of resources in a Pod

Guess my class

Report a typo

To which QoS class does the following pod belong?

spec:
  containers:
    - name: container1
      image: app1
      resources:
        requests:
          memory: "32Mi"
          cpu: "200m"
        limits:
          memory: "32Mi"
          cpu: "200m"

    - name: container2
      image: app2
      resources:
        requests:
          memory: "64Mi"
          cpu: "200m"
        limits:
          memory: "64Mi"
          cpu: "200m"

Please write the name of the class only.

Enter a short text

Create a free account to access the full topic