Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
certificate.yaml 442 B
Newer Older
{{- range .Values.clusterIssuers }}
Vandan Juvekar's avatar
Vandan Juvekar committed
{{- if eq .type "CA" }}
apiVersion: cert-manager.io/v1
kind: Certificate
metadata:
  name: {{ .name }}
  namespace: {{ $.Release.Namespace }}
spec:
  isCA: true
  commonName: {{ .name }}
  secretName: {{ .secretName }}
  {{- with .privateKey }}
  privateKey:
    {{- toYaml . | nindent 4 }}
  {{- end }}
  {{- with .issuer }}
  issuerRef:
    {{- toYaml . | nindent 4 }}
  {{- end }}
{{- end }}
{{- end }}