From 0e53c9f6efd5508ad4878781cb45f76df65b0a0c Mon Sep 17 00:00:00 2001 From: Jan Malkiewicz Date: Tue, 8 Dec 2020 15:08:01 +0100 Subject: [CMPV2] Add a template for Certificate (cert-manager) This commit introduces a template for requesting a cert-manager certificate. See: https://cert-manager.io. It consist of the following parts: - a template for creating certificate in commons component - a definition of a certifcate object in sdnc component Issue-ID: OOM-2568 Signed-off-by: Jan Malkiewicz Change-Id: If58b8f12eff075d058db5a0fee3b2db5c2c93a17 --- kubernetes/onap/values.yaml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'kubernetes/onap') diff --git a/kubernetes/onap/values.yaml b/kubernetes/onap/values.yaml index 1998539726..c416f0ddec 100755 --- a/kubernetes/onap/values.yaml +++ b/kubernetes/onap/values.yaml @@ -172,8 +172,34 @@ global: aafEnabled: true aafAgentImage: onap/aaf/aaf_agent:2.1.20 + # default values for certificates + certificate: + default: + renewBefore: 8h + subject: + organization: "Linux-Foundation" + country: "US" + locality: "San-Francisco" + province: "California" + organizationalUnit: "ONAP" + issuer: + group: certmanager.onap.org + kind: CMPv2Issuer + name: cmpv2-issuer-onap + p12Keystore: + create: false + passwordSecretRef: + name: "" + key: "" + jksKeystore: + create: false + passwordSecretRef: + name: "" + key: "" + # Enabling CMPv2 cmpv2Enabled: true + CMPv2CertManagerIntegration: false platform: certServiceClient: image: onap/org.onap.oom.platform.cert-service.oom-certservice-client:2.3.1 -- cgit 1.2.3-korg