You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: vertical-pod-autoscaler/enhancements/7571-support-pod-level-resources/README.md
+5-8Lines changed: 5 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -53,13 +53,6 @@ spec:
53
53
limits:
54
54
memory: "1024Mi"
55
55
cpu: "4"
56
-
initContainers:
57
-
- image: tool1:latest
58
-
name: tool1
59
-
restartPolicy: Always
60
-
- image: tool2:latest
61
-
name: tool2
62
-
restartPolicy: Always
63
56
containers:
64
57
- name: ide
65
58
image: theia:latest
@@ -69,7 +62,11 @@ spec:
69
62
cpu: "0.5"
70
63
limits:
71
64
memory: "256Mi"
72
-
cpu: "1"
65
+
cpu: "1"
66
+
- name: tool1
67
+
image: tool1:latest
68
+
- name: tool2
69
+
image: tool2:latest
73
70
```
74
71
75
72
The benefits and implementation details of pod-level `resources` are described in [KEP-2837](https://github.com/kubernetes/enhancements/blob/master/keps/sig-node/2837-pod-level-resource-spec/README.md). A related article is also available in the [Kubernetes documentation](https://kubernetes.io/docs/tasks/configure-pod-container/assign-pod-level-resources/).
0 commit comments