Skip to content

Commit

Permalink
Add suspicious but maybe useful nginx limit increase
Browse files Browse the repository at this point in the history
  • Loading branch information
yuvipanda committed Jan 22, 2025
1 parent aa6c06c commit 471a553
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions mybinder/templates/registry/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,10 @@ metadata:
release: {{ .Release.Name }}
annotations:
kubernetes.io/tls-acme: "true"
# things be big yo
nginx.ingress.kubernetes.io/proxy-body-size: 4096m
# This has to accomodate the max size of a single docker layer, which can be huge.
# I had previously set this to 4G thinking 'that should be big enough' and was
# immediately proven wrong. This is set to 16G now
nginx.ingress.kubernetes.io/proxy-body-size: 16384m
spec:
ingressClassName: nginx
rules:
Expand Down

0 comments on commit 471a553

Please sign in to comment.