41 lines
1.3 KiB
YAML
41 lines
1.3 KiB
YAML
|
{{- if and .Values.tls.enabled .Values.tls.certs.certManager }}
|
||
|
apiVersion: cert-manager.io/v1
|
||
|
kind: Certificate
|
||
|
metadata:
|
||
|
name: {{ template "cockroachdb.fullname" . }}-root-client
|
||
|
namespace: {{ .Release.Namespace | quote }}
|
||
|
labels:
|
||
|
helm.sh/chart: {{ template "cockroachdb.chart" . }}
|
||
|
app.kubernetes.io/name: {{ template "cockroachdb.name" . }}
|
||
|
app.kubernetes.io/instance: {{ .Release.Name | quote }}
|
||
|
app.kubernetes.io/managed-by: {{ .Release.Service | quote }}
|
||
|
{{- with .Values.labels }}
|
||
|
{{- toYaml . | nindent 4 }}
|
||
|
{{- end }}
|
||
|
spec:
|
||
|
duration: {{ .Values.tls.certs.certManagerIssuer.clientCertDuration }}
|
||
|
renewBefore: {{ .Values.tls.certs.certManagerIssuer.clientCertExpiryWindow }}
|
||
|
usages:
|
||
|
- digital signature
|
||
|
- key encipherment
|
||
|
- client auth
|
||
|
privateKey:
|
||
|
algorithm: RSA
|
||
|
size: 2048
|
||
|
commonName: root
|
||
|
subject:
|
||
|
organizations:
|
||
|
- Cockroach
|
||
|
secretName: {{ .Values.tls.certs.clientRootSecret }}
|
||
|
issuerRef:
|
||
|
{{- if .Values.tls.certs.certManagerIssuer.isSelfSignedIssuer }}
|
||
|
name: {{ template "cockroachdb.fullname" . }}-ca-issuer
|
||
|
kind: Issuer
|
||
|
group: cert-manager.io
|
||
|
{{- else }}
|
||
|
name: {{ .Values.tls.certs.certManagerIssuer.name }}
|
||
|
kind: {{ .Values.tls.certs.certManagerIssuer.kind }}
|
||
|
group: {{ .Values.tls.certs.certManagerIssuer.group }}
|
||
|
{{- end }}
|
||
|
{{- end }}
|