diff options
Diffstat (limited to 'certServiceK8sExternalProvider/deploy')
-rw-r--r-- | certServiceK8sExternalProvider/deploy/_certificate_example_.yaml | 8 | ||||
-rw-r--r-- | certServiceK8sExternalProvider/deploy/_certificate_example_contains_not_supported_properties.yaml | 8 |
2 files changed, 11 insertions, 5 deletions
diff --git a/certServiceK8sExternalProvider/deploy/_certificate_example_.yaml b/certServiceK8sExternalProvider/deploy/_certificate_example_.yaml index e19e6351..e5226906 100644 --- a/certServiceK8sExternalProvider/deploy/_certificate_example_.yaml +++ b/certServiceK8sExternalProvider/deploy/_certificate_example_.yaml @@ -43,10 +43,16 @@ spec: - California organizationalUnits: - ONAP - # DNS SAN + # SANs dnsNames: - localhost - certissuer.onap.org + ipAddresses: + - "127.0.0.1" + uris: + - onap://cluster.local/ + emailAddresses: + - onap@onap.org # The reference to the CMPv2 issuer issuerRef: group: certmanager.onap.org diff --git a/certServiceK8sExternalProvider/deploy/_certificate_example_contains_not_supported_properties.yaml b/certServiceK8sExternalProvider/deploy/_certificate_example_contains_not_supported_properties.yaml index 37068435..aa33e98f 100644 --- a/certServiceK8sExternalProvider/deploy/_certificate_example_contains_not_supported_properties.yaml +++ b/certServiceK8sExternalProvider/deploy/_certificate_example_contains_not_supported_properties.yaml @@ -47,15 +47,15 @@ spec: postalCodes: #***NOT SUPPORTED BY CERT SERVICE API*** - 12-345 serialNumber: "12345" #***NOT SUPPORTED BY CERT SERVICE API*** - # DNS SAN + # SANs dnsNames: - localhost - certissuer.onap.org - ipAddresses: #***NOT SUPPORTED BY CERT SERVICE API*** + ipAddresses: - "127.0.0.1" - uris: #***NOT SUPPORTED BY CERT SERVICE API*** + uris: - onap://cluster.local/ - emailAddresses: #***NOT SUPPORTED BY CERT SERVICE API*** + emailAddresses: - onap@onap.org duration: 24h #***OVERRIDDEN BY CMPV2 SERVER*** renewBefore: 8h |