From 2e9704d9d4b73fa528f6faeed8ef3081a27c641d Mon Sep 17 00:00:00 2001 From: Damian Sniezek Date: Thu, 5 Jun 2025 16:15:49 +0200 Subject: [PATCH] chore(deployment): add default proxy-body-size in controlplane ingress #2095 Signed-off-by: Damian Sniezek --- deployment/chainloop/Chart.yaml | 2 +- deployment/chainloop/values.yaml | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/deployment/chainloop/Chart.yaml b/deployment/chainloop/Chart.yaml index 66d84e7a7..e822b93e9 100644 --- a/deployment/chainloop/Chart.yaml +++ b/deployment/chainloop/Chart.yaml @@ -7,7 +7,7 @@ description: Chainloop is an open source software supply chain control plane, a type: application # Bump the patch (not minor, not major) version on each change in the Chart Source code -version: 1.230.1 +version: 1.230.2 # Do not update appVersion, this is handled automatically by the release process appVersion: v1.4.5 diff --git a/deployment/chainloop/values.yaml b/deployment/chainloop/values.yaml index fe46c18fa..f593f2e17 100644 --- a/deployment/chainloop/values.yaml +++ b/deployment/chainloop/values.yaml @@ -522,6 +522,11 @@ controlplane: ## @skip controlplane.ingressAPI.annotations.nginx.ingress.kubernetes.io/backend-protocol ## Tell Nginx Ingress Controller to expect gRPC traffic nginx.ingress.kubernetes.io/backend-protocol: "GRPC" + # Nginx Ingress settings + ## @skip controlplane.ingressAPI.annotations.nginx.ingress.kubernetes.io/proxy-body-size + # Limit file uploads/downloads to 10MB. Alternatively you can disable this limitation by setting it to 0 + # Even though we send data in chunks of 1MB, this size refers to all the data sent during the whole streaming session + nginx.ingress.kubernetes.io/proxy-body-size: "10m" ## @param controlplane.ingressAPI.tls Enable TLS configuration for the host defined at `controlplane.ingress.hostname` parameter ## TLS certificates will be retrieved from a TLS secret with name: `{{- printf "%s-tls" .Values.controlplane.ingress.hostname }}`