[PLATFORM] Create Ingress Certificates for ServiceMesh
[oom.git] / kubernetes / platform / components / oom-cert-service / templates / issuer.yaml
1 {{/*
2   # Copyright © 2021, Nokia
3   #
4   # Licensed under the Apache License, Version 2.0 (the "License");
5   # you may not use this file except in compliance with the License.
6   # You may obtain a copy of the License at
7   #
8   #       http://www.apache.org/licenses/LICENSE-2.0
9   #
10   # Unless required by applicable law or agreed to in writing, software
11   # distributed under the License is distributed on an "AS IS" BASIS,
12   # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   # See the License for the specific language governing permissions and
14   # limitations under the License.
15 */}}
16
17 {{- if .Values.global.cmpv2Enabled }}
18 apiVersion: cert-manager.io/v1
19 kind: Issuer
20 metadata:
21   name: {{ .Values.tls.issuer.selfsigning.name }}
22   namespace: {{ include "common.namespace" . }}
23 spec:
24   selfSigned: {}
25 ---
26 apiVersion: cert-manager.io/v1
27 kind: Issuer
28 metadata:
29   name: {{ .Values.tls.issuer.ca.name }}
30   namespace: {{ include "common.namespace" . }}
31 spec:
32   ca:
33     secretName: {{ .Values.tls.issuer.ca.secret.name }}
34 {{- end -}}
35
36 {{- if (include "common.onServiceMesh" .) }}
37 ---
38 apiVersion: cert-manager.io/v1
39 kind: Issuer
40 metadata:
41   name: {{ .Values.tls.issuer.ingressSelfsigned.name }}
42   namespace: {{ .Values.tls.issuer.ingressSelfsigned.namespace }}
43 spec:
44   selfSigned: {}
45 ---
46 apiVersion: cert-manager.io/v1
47 kind: Issuer
48 metadata:
49   name: {{ .Values.tls.issuer.ingressCa.name }}
50   namespace: {{ .Values.tls.issuer.ingressCa.namespace }}
51 spec:
52   ca:
53     secretName: {{ .Values.tls.issuer.ingressCa.secret.name }}
54 {{- end -}}