diff --git a/deployment/chainloop/Chart.yaml b/deployment/chainloop/Chart.yaml index 5f4cc4ef1..c7d425247 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.231.0 +version: 1.231.1 # Do not update appVersion, this is handled automatically by the release process appVersion: v1.5.0 diff --git a/deployment/chainloop/values.yaml b/deployment/chainloop/values.yaml index 34cc7d5e3..35d54001a 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 }}`