Pods count should be part of object-count's spec. (#16859)

Pods count was added in compute-resources spec which should be in objects-count spec as we're passing count of pods in the definition.
pull/16913/head
Tanveer Alam 2019-10-15 04:15:50 +05:30 committed by Kubernetes Prow Robot
parent a6c0b0c698
commit 45c0769b54
1 changed files with 2 additions and 2 deletions

View File

@ -401,7 +401,6 @@ metadata:
name: compute-resources
spec:
hard:
pods: "4"
requests.cpu: "1"
requests.memory: 1Gi
limits.cpu: "2"
@ -424,6 +423,7 @@ spec:
hard:
configmaps: "10"
persistentvolumeclaims: "4"
pods: "4"
replicationcontrollers: "20"
secrets: "10"
services: "10"
@ -456,7 +456,6 @@ Resource Used Hard
-------- ---- ----
limits.cpu 0 2
limits.memory 0 2Gi
pods 0 4
requests.cpu 0 1
requests.memory 0 1Gi
requests.nvidia.com/gpu 0 4
@ -473,6 +472,7 @@ Resource Used Hard
-------- ---- ----
configmaps 0 10
persistentvolumeclaims 0 4
pods 0 4
replicationcontrollers 0 20
secrets 1 10
services 0 10