Skip to content

Commit

Permalink
fix: Correctly indent labels in cert Secrets (#526)
Browse files Browse the repository at this point in the history
Signed-off-by: Víctor Cuadrado Juan <[email protected]>
  • Loading branch information
viccuad authored Sep 10, 2024
1 parent 78313ce commit cd11bee
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions charts/kubewarden-controller/templates/webhooks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ kind: Secret
metadata:
name: kubewarden-ca
namespace: {{ .Release.Namespace }}
labels:
{{- include "kubewarden-controller.labels" . | nindent 4 }}
labels:
{{- include "kubewarden-controller.labels" . | nindent 4 }}
data:
ca.crt: {{ $caCert }}
ca.key: {{ $caPrivateKey }}
Expand All @@ -38,8 +38,8 @@ kind: Secret
metadata:
name: kubewarden-webhook-server-cert
namespace: {{ .Release.Namespace }}
labels:
{{- include "kubewarden-controller.labels" . | nindent 4 }}
labels:
{{- include "kubewarden-controller.labels" . | nindent 4 }}
data:
tls.crt: {{ $serverCert }}
tls.key: {{ $serverPrivateKey }}
Expand Down

0 comments on commit cd11bee

Please sign in to comment.