Skip to content

Commit 471a553

Browse files
committed
Add suspicious but maybe useful nginx limit increase
1 parent aa6c06c commit 471a553

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

mybinder/templates/registry/ingress.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,10 @@ metadata:
99
release: {{ .Release.Name }}
1010
annotations:
1111
kubernetes.io/tls-acme: "true"
12-
# things be big yo
13-
nginx.ingress.kubernetes.io/proxy-body-size: 4096m
12+
# This has to accomodate the max size of a single docker layer, which can be huge.
13+
# I had previously set this to 4G thinking 'that should be big enough' and was
14+
# immediately proven wrong. This is set to 16G now
15+
nginx.ingress.kubernetes.io/proxy-body-size: 16384m
1416
spec:
1517
ingressClassName: nginx
1618
rules:

0 commit comments

Comments
 (0)