Skip to content

Commit ccd1c1d

Browse files
fix: limiting init container resources
1 parent 8aa230d commit ccd1c1d

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

kubernetes/05-deployment.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,13 @@ spec:
4747
initContainers:
4848
- name: wait-for-db
4949
image: busybox:1.36
50+
resources:
51+
requests:
52+
memory: "32Mi"
53+
cpu: "50m"
54+
limits:
55+
memory: 128Mi
56+
cpu: "1"
5057
command:
5158
- sh
5259
- -c

0 commit comments

Comments
 (0)