33 lines
874 B
Smarty
33 lines
874 B
Smarty
{{/*
|
|
This template serves as a blueprint for all Cert-Manager Certificate objects that are created
|
|
within the common library.
|
|
*/}}
|
|
{{- define "tc.v1.common.class.certificate" -}}
|
|
{{- $root := .root -}}
|
|
{{- $name := .name -}}
|
|
{{- $hosts := .hosts -}}
|
|
{{- $certificateIssuer := .certificateIssuer }}
|
|
---
|
|
apiVersion: {{ include "tc.v1.common.capabilities.cert-manager.certificate.apiVersion" $ }}
|
|
kind: Certificate
|
|
metadata:
|
|
name: {{ $name }}
|
|
namespace: {{ $root.Values.namespace | default $root.Values.global.namespace | default $root.Release.Namespace }}
|
|
spec:
|
|
secretName: {{ $name }}
|
|
dnsNames:
|
|
{{- range $hosts }}
|
|
- {{ tpl . $root | quote }}
|
|
{{- end }}
|
|
privateKey:
|
|
algorithm: ECDSA
|
|
size: 256
|
|
rotationPolicy: Always
|
|
issuerRef:
|
|
name: {{ tpl $certificateIssuer $root | quote }}
|
|
kind: ClusterIssuer
|
|
group: cert-manager.io
|
|
|
|
|
|
{{- end -}}
|