Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deployment/chainloop/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
5 changes: 5 additions & 0 deletions deployment/chainloop/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}`
Expand Down
Loading