diff --git a/deployment/chainloop/Chart.yaml b/deployment/chainloop/Chart.yaml index fc282eb8e..488a49419 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.338.0 +version: 1.339.0 # Do not update appVersion, this is handled automatically by the release process appVersion: v1.80.0 diff --git a/deployment/chainloop/templates/cas/service-grpc.yaml b/deployment/chainloop/templates/cas/service-grpc.yaml index 972aeba99..03b1fe3f8 100644 --- a/deployment/chainloop/templates/cas/service-grpc.yaml +++ b/deployment/chainloop/templates/cas/service-grpc.yaml @@ -35,7 +35,7 @@ spec: {{- end }} ports: - name: grpc - {{- $port := coalesce .Values.cas.serviceAPI.port .Values.cas.serviceAPI.ports.http }} + {{- $port := .Values.cas.serviceAPI.ports.http }} port: {{ $port }} {{- if not (eq $port .Values.cas.containerPorts.grpc) }} targetPort: {{ .Values.cas.containerPorts.grpc }} diff --git a/deployment/chainloop/templates/controlplane/configmap.yaml b/deployment/chainloop/templates/controlplane/configmap.yaml index 388e23709..4ba11e7fc 100644 --- a/deployment/chainloop/templates/controlplane/configmap.yaml +++ b/deployment/chainloop/templates/controlplane/configmap.yaml @@ -38,7 +38,7 @@ data: {{- end }} cas_server: grpc: - addr: {{ printf "%s-api:%.0f" (include "chainloop.cas.fullname" .) (coalesce .Values.cas.serviceAPI.port .Values.cas.serviceAPI.ports.http) }} + addr: {{ printf "%s-api:%.0f" (include "chainloop.cas.fullname" .) .Values.cas.serviceAPI.ports.http }} insecure: {{ empty (include "controlplane.tls-secret-name" .) }} download_url: {{ include "chainloop.cas.external_url" . }}/download {{- if .Values.cas.defaultMaxEntrySize }} diff --git a/deployment/chainloop/templates/controlplane/service-grpc.yaml b/deployment/chainloop/templates/controlplane/service-grpc.yaml index 83a96201c..3fd943430 100644 --- a/deployment/chainloop/templates/controlplane/service-grpc.yaml +++ b/deployment/chainloop/templates/controlplane/service-grpc.yaml @@ -35,7 +35,7 @@ spec: {{- end }} ports: - name: grpc - {{- $port := coalesce .Values.controlplane.serviceAPI.port .Values.controlplane.serviceAPI.ports.http }} + {{- $port := .Values.controlplane.serviceAPI.ports.http }} port: {{ $port }} {{- if not (eq $port .Values.controlplane.containerPorts.grpc) }} targetPort: {{ .Values.controlplane.containerPorts.grpc }}