Skip to content

Commit df2c209

Browse files
committed
fix(chart): use correct serviceAPI.ports.http value key in NOTES.txt
The serviceAPI.port key does not exist in the values schema. Replace the coalesce fallback with the correct serviceAPI.ports.http reference. Signed-off-by: Guilherme Oliveira <ghophp@gmail.com>
1 parent ff6cb78 commit df2c209

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

deployment/chainloop/templates/NOTES.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ APP VERSION: {{ .Chart.AppVersion }}
1212
{{- $casGrpcURL := include "chainloop.cas.external_grpc_url" . }}
1313

1414
{{- $cpSvcType := .Values.controlplane.serviceAPI.type }}
15-
{{- $cpSvcPort := coalesce .Values.controlplane.serviceAPI.port .Values.controlplane.serviceAPI.ports.http }}
15+
{{- $cpSvcPort := .Values.controlplane.serviceAPI.ports.http }}
1616
{{- $cpSvcName := printf "%s-api" (include "chainloop.controlplane.fullname" .) }}
1717

1818
{{- $casSvcType := .Values.cas.serviceAPI.type }}
19-
{{- $casSvcPort := coalesce .Values.cas.serviceAPI.port .Values.cas.serviceAPI.ports.http }}
19+
{{- $casSvcPort := .Values.cas.serviceAPI.ports.http }}
2020
{{- $casSvcName := printf "%s-api" (include "chainloop.cas.fullname" .) }}
2121

2222
{{- $namespace := include "common.names.namespace" . }}

0 commit comments

Comments
 (0)