diff options
author | Remigiusz Janeczek <remigiusz.janeczek@nokia.com> | 2020-12-01 12:54:14 +0100 |
---|---|---|
committer | Remigiusz Janeczek <remigiusz.janeczek@nokia.com> | 2020-12-01 12:54:14 +0100 |
commit | e0d2ada42209f1327fd1b95279fae5662aff23e1 (patch) | |
tree | 29b36e2f768a99edd70787c8f5de63bcf7843f7f /docs | |
parent | e8a9767bb310bbd5868c89a7368e25112b0f3f84 (diff) |
Update external certs docs to use comma as SANs delimiter
Issue-ID: DCAEGEN2-2508
Signed-off-by: Remigiusz Janeczek <remigiusz.janeczek@nokia.com>
Change-Id: I66f5e9088c33fe5d419570a0a0e7f443d535a697
Diffstat (limited to 'docs')
-rw-r--r-- | docs/sections/tls_enablement.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/sections/tls_enablement.rst b/docs/sections/tls_enablement.rst index 85ba13d0..4a049039 100644 --- a/docs/sections/tls_enablement.rst +++ b/docs/sections/tls_enablement.rst @@ -176,7 +176,7 @@ From k8splugin 3.4.1 when external TLS is enabled (use_external_tls=true), keyst * A string (``output_type``) that indicates certificate output type. * A dictionary (``external_certificate_parameters``) with two elements: * A string (``common_name``) that indicates common name which should be present in certificate. Specific for every blueprint (e.g. dcae-ves-collector for VES). - * A string (``sans``) that indicates list of Subject Alternative Names (SANs) which should be present in certificate. Delimiter - : Should contain common_name value and other FQDNs under which given component is accessible. + * A string (``sans``) that indicates list of Subject Alternative Names (SANs) which should be present in certificate. Delimiter - , Should contain common_name value and other FQDNs under which given component is accessible. As a final step of the plugin the generated CMPv2 truststore entries will be appended to AAF CA truststore (see certificate artifacts below). @@ -191,7 +191,7 @@ From k8splugin 3.4.1 when external TLS is enabled (use_external_tls=true), keyst cert_type: "P12" external_certificate_parameters: common_name: "simpledemo.onap.org" - sans: "simpledemo.onap.org;ves.simpledemo.onap.org;ves.onap.org" + sans: "simpledemo.onap.org,ves.simpledemo.onap.org,ves.onap.org" For this example the certificates are mounted into ``/opt/app/dcae-certificate/external`` directory within the container. |