chart/operator/templates/cert.yaml (29 lines of code) (raw):

# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. {{- if .Values.webhook.enabled }} apiVersion: cert-manager.io/v1 kind: Certificate metadata: name: {{ include "operator.fullname" . | trunc (int (sub 63 (len "-serving-cert"))) | printf "%s-serving-cert" }} namespace: {{ .Release.Namespace }} annotations: "helm.sh/hook": post-install,post-upgrade "helm.sh/hook-weight": "2" spec: dnsNames: - {{ include "operator.fullname" . | trunc (int (sub 63 (len "-webhook-service"))) | printf "%s-webhook-service" }}.{{ .Release.Namespace }}.svc - {{ include "operator.fullname" . | trunc (int (sub 63 (len "-webhook-service"))) | printf "%s-webhook-service" }}.{{ .Release.Namespace }}.svc.cluster.local issuerRef: kind: Issuer name: {{ include "operator.fullname" . | trunc (int (sub 63 (len "-selfsigned-issuer"))) | printf "%s-selfsigned-issuer" }} secretName: {{ include "operator.fullname" . | trunc (int (sub 63 (len "-controller-manager-cert"))) | printf "%s-controller-manager-cert" }} --- apiVersion: cert-manager.io/v1 kind: Issuer metadata: name: {{ include "operator.fullname" . | trunc (int (sub 63 (len "-selfsigned-issuer"))) | printf "%s-selfsigned-issuer" }} namespace: {{ .Release.Namespace }} annotations: "helm.sh/hook": post-install,post-upgrade "helm.sh/hook-weight": "1" spec: selfSigned: {} {{- end }}