From 2ee59046faa7d00cfd5544872421da7edbe53c88 Mon Sep 17 00:00:00 2001 From: Binbin Li Date: Mon, 13 May 2024 08:00:05 +0800 Subject: [PATCH] fix: fix missing separator in helm template (#1463) --- charts/ratify/templates/inline-key-management-provider.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/charts/ratify/templates/inline-key-management-provider.yaml b/charts/ratify/templates/inline-key-management-provider.yaml index 665ea0b75..0d46ae200 100644 --- a/charts/ratify/templates/inline-key-management-provider.yaml +++ b/charts/ratify/templates/inline-key-management-provider.yaml @@ -28,8 +28,8 @@ spec: parameters: contentType: certificate value: {{ $cert | quote }} -{{- end }} --- +{{- end }} {{- range $i, $key := .Values.cosignKeys }} apiVersion: config.ratify.deislabs.io/v1beta1 kind: KeyManagementProvider @@ -43,4 +43,5 @@ spec: parameters: contentType: key value: {{ $key | quote }} +--- {{- end }} \ No newline at end of file