We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa6c06c commit 471a553Copy full SHA for 471a553
mybinder/templates/registry/ingress.yaml
@@ -9,8 +9,10 @@ metadata:
9
release: {{ .Release.Name }}
10
annotations:
11
kubernetes.io/tls-acme: "true"
12
- # things be big yo
13
- 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
14
+ # immediately proven wrong. This is set to 16G now
15
+ nginx.ingress.kubernetes.io/proxy-body-size: 16384m
16
spec:
17
ingressClassName: nginx
18
rules:
0 commit comments