From ba5647f1de9415abe7fcde951cc7fd73ef9638fa Mon Sep 17 00:00:00 2001 From: Jana Vrbkova Date: Tue, 15 Aug 2023 12:52:39 +0200 Subject: [PATCH 01/18] npm process update --- .../pages/enabling-npm-artifact-repositories.adoc | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc b/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc index ce9c011379..9aee6ab667 100644 --- a/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc +++ b/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc @@ -26,14 +26,14 @@ apiVersion: v1 metadata: name: tls-cer annotations: - controller.devfile.io/mount-path: /home/user/certs + controller.devfile.io/mount-path: /public-certs/nexus.cer controller.devfile.io/mount-as: file labels: controller.devfile.io/mount-to-devworkspace: 'true' controller.devfile.io/watch-secret: 'true' data: tls.cer: >- - ____ <1> + ---- <1> Base64 encoding with disabled line wrapping. @@ -51,7 +51,6 @@ metadata: controller.devfile.io/mount-to-devworkspace: 'true' controller.devfile.io/watch-configmap: 'true' data: - NODE_EXTRA_CA_CERTS: /home/user/certs/tls.cer NPM_CONFIG_REGISTRY: >- - https://____/repository/npm-all/ + https:///repository/npm-all/ ---- From 234d33e61f0725cadf5e7f21d4d66a2fb3746be4 Mon Sep 17 00:00:00 2001 From: Jana Vrbkova Date: Tue, 15 Aug 2023 12:55:55 +0200 Subject: [PATCH 02/18] Update enabling-npm-artifact-repositories.adoc --- .../pages/enabling-npm-artifact-repositories.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc b/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc index 9aee6ab667..a59bece121 100644 --- a/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc +++ b/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc @@ -33,7 +33,7 @@ metadata: controller.devfile.io/watch-secret: 'true' data: tls.cer: >- - + ____ <1> ---- <1> Base64 encoding with disabled line wrapping. From 1d8779822476ba6094aaf2cabddbb5977fc4d7b3 Mon Sep 17 00:00:00 2001 From: Jana Vrbkova Date: Tue, 15 Aug 2023 12:56:46 +0200 Subject: [PATCH 03/18] Update enabling-npm-artifact-repositories.adoc --- .../pages/enabling-npm-artifact-repositories.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc b/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc index a59bece121..de736a1a86 100644 --- a/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc +++ b/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc @@ -52,5 +52,5 @@ metadata: controller.devfile.io/watch-configmap: 'true' data: NPM_CONFIG_REGISTRY: >- - https:///repository/npm-all/ + ____/repository/npm-all/ ---- From cd69e9f78c93f418c3e563352d7284dd5bbd14de Mon Sep 17 00:00:00 2001 From: Jana Vrbkova Date: Tue, 15 Aug 2023 12:57:09 +0200 Subject: [PATCH 04/18] Update enabling-npm-artifact-repositories.adoc --- .../pages/enabling-npm-artifact-repositories.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc b/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc index de736a1a86..e79d94004a 100644 --- a/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc +++ b/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc @@ -52,5 +52,5 @@ metadata: controller.devfile.io/watch-configmap: 'true' data: NPM_CONFIG_REGISTRY: >- - ____/repository/npm-all/ + https://____/repository/npm-all/ ---- From 4eb2cd62982a4404622b7a835699978d43aa6c4e Mon Sep 17 00:00:00 2001 From: Jana Vrbkova Date: Tue, 15 Aug 2023 17:12:25 +0200 Subject: [PATCH 05/18] npm process update --- .../enabling-npm-artifact-repositories.adoc | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc b/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc index e79d94004a..2d21b48b65 100644 --- a/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc +++ b/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc @@ -54,3 +54,30 @@ data: NPM_CONFIG_REGISTRY: >- https://____/repository/npm-all/ ---- + += Disabling self-signed certificate validation + +Follow the instructions below to disable self-signed certificate validation. + +.Procedure + +* Run the following command in the terminal: ++ +[source, yaml] +---- +npm config set strict-ssl false +---- + += Restoring correct NODE_EXTRA_CA_CERTS variable value + +Use the command described below to restore the correct NODE_EXTRA_CA_CERTS variable value before dependencies are downloaded every time. + +.Procedure + +* Run the following command in the terminal: ++ +[source, yaml] +---- +`export NODE_EXTRA_CA_CERTS=/public-certs/nexus.cer` <1> +---- +<1> `/public-certs/nexus.cer` is the path to self-signed SSL certificate of Nexus artifactory. \ No newline at end of file From 259be8d3c4b56b18701a54fef90638dd796eac48 Mon Sep 17 00:00:00 2001 From: Jana Vrbkova Date: Tue, 15 Aug 2023 17:29:19 +0200 Subject: [PATCH 06/18] npm process update --- .../pages/enabling-npm-artifact-repositories.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc b/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc index 2d21b48b65..0588fb1e9a 100644 --- a/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc +++ b/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc @@ -80,4 +80,4 @@ Use the command described below to restore the correct NODE_EXTRA_CA_CERTS varia ---- `export NODE_EXTRA_CA_CERTS=/public-certs/nexus.cer` <1> ---- -<1> `/public-certs/nexus.cer` is the path to self-signed SSL certificate of Nexus artifactory. \ No newline at end of file +<1> `/public-certs/nexus.cer` is the path to self-signed SSL/TLS certificate of Nexus artifactory. \ No newline at end of file From 0707b04a879fa356d4f0b12bb23e604e5ea787aa Mon Sep 17 00:00:00 2001 From: Jana Vrbkova Date: Tue, 15 Aug 2023 19:14:15 +0200 Subject: [PATCH 07/18] npm process update --- .../enabling-npm-artifact-repositories.adoc | 28 ++----------------- ...ng-self-signed-certificate-validation.adoc | 13 +++++++++ ...ng-node-extra-ca-certs-variable-value.adoc | 14 ++++++++++ 3 files changed, 29 insertions(+), 26 deletions(-) create mode 100644 modules/end-user-guide/partials/proc_disabling-self-signed-certificate-validation.adoc create mode 100644 modules/end-user-guide/partials/proc_restoring-node-extra-ca-certs-variable-value.adoc diff --git a/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc b/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc index 0588fb1e9a..b29db7dfac 100644 --- a/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc +++ b/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc @@ -55,29 +55,5 @@ data: https://____/repository/npm-all/ ---- -= Disabling self-signed certificate validation - -Follow the instructions below to disable self-signed certificate validation. - -.Procedure - -* Run the following command in the terminal: -+ -[source, yaml] ----- -npm config set strict-ssl false ----- - -= Restoring correct NODE_EXTRA_CA_CERTS variable value - -Use the command described below to restore the correct NODE_EXTRA_CA_CERTS variable value before dependencies are downloaded every time. - -.Procedure - -* Run the following command in the terminal: -+ -[source, yaml] ----- -`export NODE_EXTRA_CA_CERTS=/public-certs/nexus.cer` <1> ----- -<1> `/public-certs/nexus.cer` is the path to self-signed SSL/TLS certificate of Nexus artifactory. \ No newline at end of file +include::disable-self-signed-certificate-validation.adoc[] +include::restoring-node-extra-ca-certs-variable-value.adoc[] diff --git a/modules/end-user-guide/partials/proc_disabling-self-signed-certificate-validation.adoc b/modules/end-user-guide/partials/proc_disabling-self-signed-certificate-validation.adoc new file mode 100644 index 0000000000..e95da2cc07 --- /dev/null +++ b/modules/end-user-guide/partials/proc_disabling-self-signed-certificate-validation.adoc @@ -0,0 +1,13 @@ +[id="disabling-self-signed-certificate-validation"] += Disabling self-signed certificate validation + +Follow the instructions below to disable self-signed certificate validation. + +.Procedure + +* Run the following command in the terminal: ++ +[source, yaml] +---- +npm config set strict-ssl false +---- \ No newline at end of file diff --git a/modules/end-user-guide/partials/proc_restoring-node-extra-ca-certs-variable-value.adoc b/modules/end-user-guide/partials/proc_restoring-node-extra-ca-certs-variable-value.adoc new file mode 100644 index 0000000000..f6eec0c199 --- /dev/null +++ b/modules/end-user-guide/partials/proc_restoring-node-extra-ca-certs-variable-value.adoc @@ -0,0 +1,14 @@ +[id="restoring-node-extra-ca-certs-variable-value"] += Restoring correct NODE_EXTRA_CA_CERTS variable value + +Use the command described below to restore the correct NODE_EXTRA_CA_CERTS variable value every time before dependencies are downloaded. + +.Procedure + +* Run the following command in the terminal: ++ +[source, yaml] +---- +`export NODE_EXTRA_CA_CERTS=/public-certs/nexus.cer` <1> +---- +<1> `/public-certs/nexus.cer` is the path to self-signed SSL/TLS certificate of Nexus artifactory. \ No newline at end of file From a8b0a3aec08287148f97c9faaeea89bf1d1ed645 Mon Sep 17 00:00:00 2001 From: Jana Vrbkova Date: Tue, 15 Aug 2023 19:19:08 +0200 Subject: [PATCH 08/18] npm process update --- .../pages/enabling-npm-artifact-repositories.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc b/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc index b29db7dfac..44c0c11d02 100644 --- a/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc +++ b/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc @@ -55,5 +55,5 @@ data: https://____/repository/npm-all/ ---- -include::disable-self-signed-certificate-validation.adoc[] -include::restoring-node-extra-ca-certs-variable-value.adoc[] +include::partial$proc_disabling-self-signed-certificate-validation.adoc[] +include::partial$proc_restoring-node-extra-ca-certs-variable-value.adoc[] From ecb118abe874a8ba6f3fbc53cd4c0a8c426fbf6c Mon Sep 17 00:00:00 2001 From: Jana Vrbkova Date: Wed, 16 Aug 2023 09:43:22 +0200 Subject: [PATCH 09/18] Update enabling-npm-artifact-repositories.adoc --- .../pages/enabling-npm-artifact-repositories.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc b/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc index 44c0c11d02..31086e0a85 100644 --- a/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc +++ b/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc @@ -55,5 +55,5 @@ data: https://____/repository/npm-all/ ---- -include::partial$proc_disabling-self-signed-certificate-validation.adoc[] -include::partial$proc_restoring-node-extra-ca-certs-variable-value.adoc[] +include::partial$proc_disabling-self-signed-certificate-validation.adoc[leveloffset=+1] +include::partial$proc_restoring-node-extra-ca-certs-variable-value.adoc[leveloffset=+1] From b46716f6ec25caee8da67f7c342aa2073c3cc10d Mon Sep 17 00:00:00 2001 From: Jana Vrbkova Date: Thu, 19 Oct 2023 17:09:54 +0200 Subject: [PATCH 10/18] Update modules/end-user-guide/partials/proc_restoring-node-extra-ca-certs-variable-value.adoc Co-authored-by: Nick Boldt --- .../proc_restoring-node-extra-ca-certs-variable-value.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/end-user-guide/partials/proc_restoring-node-extra-ca-certs-variable-value.adoc b/modules/end-user-guide/partials/proc_restoring-node-extra-ca-certs-variable-value.adoc index f6eec0c199..6a9f2d7a7d 100644 --- a/modules/end-user-guide/partials/proc_restoring-node-extra-ca-certs-variable-value.adoc +++ b/modules/end-user-guide/partials/proc_restoring-node-extra-ca-certs-variable-value.adoc @@ -1,7 +1,7 @@ [id="restoring-node-extra-ca-certs-variable-value"] = Restoring correct NODE_EXTRA_CA_CERTS variable value -Use the command described below to restore the correct NODE_EXTRA_CA_CERTS variable value every time before dependencies are downloaded. +Use the command below to set NODE_EXTRA_CA_CERTS to point to where you have your SSL/TLS certificate. .Procedure From 12090dd6ab06efdf4bb8da484002f48cfcddb468 Mon Sep 17 00:00:00 2001 From: Jana Vrbkova Date: Thu, 19 Oct 2023 17:10:10 +0200 Subject: [PATCH 11/18] Update modules/end-user-guide/partials/proc_restoring-node-extra-ca-certs-variable-value.adoc Co-authored-by: Nick Boldt --- .../proc_restoring-node-extra-ca-certs-variable-value.adoc | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/end-user-guide/partials/proc_restoring-node-extra-ca-certs-variable-value.adoc b/modules/end-user-guide/partials/proc_restoring-node-extra-ca-certs-variable-value.adoc index 6a9f2d7a7d..067cb61d03 100644 --- a/modules/end-user-guide/partials/proc_restoring-node-extra-ca-certs-variable-value.adoc +++ b/modules/end-user-guide/partials/proc_restoring-node-extra-ca-certs-variable-value.adoc @@ -10,5 +10,6 @@ Use the command below to set NODE_EXTRA_CA_CERTS to point to where you have your [source, yaml] ---- `export NODE_EXTRA_CA_CERTS=/public-certs/nexus.cer` <1> +`npm install` ---- <1> `/public-certs/nexus.cer` is the path to self-signed SSL/TLS certificate of Nexus artifactory. \ No newline at end of file From e9f7bc311ad7d6ef574e53cafd6548d882a419d2 Mon Sep 17 00:00:00 2001 From: Jana Vrbkova Date: Thu, 19 Oct 2023 17:18:14 +0200 Subject: [PATCH 12/18] Update modules/end-user-guide/partials/proc_disabling-self-signed-certificate-validation.adoc Co-authored-by: Nick Boldt --- .../proc_disabling-self-signed-certificate-validation.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/end-user-guide/partials/proc_disabling-self-signed-certificate-validation.adoc b/modules/end-user-guide/partials/proc_disabling-self-signed-certificate-validation.adoc index e95da2cc07..d27d16d0e6 100644 --- a/modules/end-user-guide/partials/proc_disabling-self-signed-certificate-validation.adoc +++ b/modules/end-user-guide/partials/proc_disabling-self-signed-certificate-validation.adoc @@ -1,7 +1,7 @@ [id="disabling-self-signed-certificate-validation"] = Disabling self-signed certificate validation -Follow the instructions below to disable self-signed certificate validation. +Run the command below to disable SSL, which will bypass validation of your self-signed certificates. Note that this is a potential security risk. For a better solution, configure use of a self-signed certificate you trust with `NODE_EXTRA_CA_CERTS`. .Procedure From aaade41cc3c8e8d15922c0ab9f5600c1a9db2204 Mon Sep 17 00:00:00 2001 From: Jana Vrbkova Date: Thu, 19 Oct 2023 17:18:28 +0200 Subject: [PATCH 13/18] Update modules/end-user-guide/partials/proc_restoring-node-extra-ca-certs-variable-value.adoc Co-authored-by: Nick Boldt --- .../proc_restoring-node-extra-ca-certs-variable-value.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/end-user-guide/partials/proc_restoring-node-extra-ca-certs-variable-value.adoc b/modules/end-user-guide/partials/proc_restoring-node-extra-ca-certs-variable-value.adoc index 067cb61d03..b97d26c459 100644 --- a/modules/end-user-guide/partials/proc_restoring-node-extra-ca-certs-variable-value.adoc +++ b/modules/end-user-guide/partials/proc_restoring-node-extra-ca-certs-variable-value.adoc @@ -1,5 +1,5 @@ [id="restoring-node-extra-ca-certs-variable-value"] -= Restoring correct NODE_EXTRA_CA_CERTS variable value += Configuring NODE_EXTRA_CA_CERTS to use a certificate Use the command below to set NODE_EXTRA_CA_CERTS to point to where you have your SSL/TLS certificate. From 08306f7cb627fc1112d15e5162fe06ca0ba00135 Mon Sep 17 00:00:00 2001 From: Jana Vrbkova Date: Thu, 19 Oct 2023 17:18:37 +0200 Subject: [PATCH 14/18] Update modules/end-user-guide/partials/proc_restoring-node-extra-ca-certs-variable-value.adoc Co-authored-by: Nick Boldt --- .../proc_restoring-node-extra-ca-certs-variable-value.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/end-user-guide/partials/proc_restoring-node-extra-ca-certs-variable-value.adoc b/modules/end-user-guide/partials/proc_restoring-node-extra-ca-certs-variable-value.adoc index b97d26c459..b675cb5eae 100644 --- a/modules/end-user-guide/partials/proc_restoring-node-extra-ca-certs-variable-value.adoc +++ b/modules/end-user-guide/partials/proc_restoring-node-extra-ca-certs-variable-value.adoc @@ -7,7 +7,7 @@ Use the command below to set NODE_EXTRA_CA_CERTS to point to where you have your * Run the following command in the terminal: + -[source, yaml] +[source, bash] ---- `export NODE_EXTRA_CA_CERTS=/public-certs/nexus.cer` <1> `npm install` From dbb5e09016bcc53d4e32981e082f00b00d0e4b65 Mon Sep 17 00:00:00 2001 From: Jana Vrbkova Date: Thu, 19 Oct 2023 23:43:26 +0200 Subject: [PATCH 15/18] Update proc_disabling-self-signed-certificate-validation.adoc --- .../proc_disabling-self-signed-certificate-validation.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/end-user-guide/partials/proc_disabling-self-signed-certificate-validation.adoc b/modules/end-user-guide/partials/proc_disabling-self-signed-certificate-validation.adoc index d27d16d0e6..765f20a7b7 100644 --- a/modules/end-user-guide/partials/proc_disabling-self-signed-certificate-validation.adoc +++ b/modules/end-user-guide/partials/proc_disabling-self-signed-certificate-validation.adoc @@ -1,7 +1,7 @@ [id="disabling-self-signed-certificate-validation"] = Disabling self-signed certificate validation -Run the command below to disable SSL, which will bypass validation of your self-signed certificates. Note that this is a potential security risk. For a better solution, configure use of a self-signed certificate you trust with `NODE_EXTRA_CA_CERTS`. +Run the command below to disable SSL/TSL, bypassing the validation of your self-signed certificates. Note that this is a potential security risk. For a better solution, configure a self-signed certificate you trust with `NODE_EXTRA_CA_CERTS`. .Procedure @@ -10,4 +10,4 @@ Run the command below to disable SSL, which will bypass validation of your self- [source, yaml] ---- npm config set strict-ssl false ----- \ No newline at end of file +---- From 47b596baa57d04535fafba65c46167455366d2c8 Mon Sep 17 00:00:00 2001 From: Jana Vrbkova Date: Thu, 19 Oct 2023 23:47:15 +0200 Subject: [PATCH 16/18] Update proc_disabling-self-signed-certificate-validation.adoc --- .../proc_disabling-self-signed-certificate-validation.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/end-user-guide/partials/proc_disabling-self-signed-certificate-validation.adoc b/modules/end-user-guide/partials/proc_disabling-self-signed-certificate-validation.adoc index 765f20a7b7..9a2d008dbb 100644 --- a/modules/end-user-guide/partials/proc_disabling-self-signed-certificate-validation.adoc +++ b/modules/end-user-guide/partials/proc_disabling-self-signed-certificate-validation.adoc @@ -1,7 +1,7 @@ [id="disabling-self-signed-certificate-validation"] = Disabling self-signed certificate validation -Run the command below to disable SSL/TSL, bypassing the validation of your self-signed certificates. Note that this is a potential security risk. For a better solution, configure a self-signed certificate you trust with `NODE_EXTRA_CA_CERTS`. +Run the command below to disable SSL/TLS, bypassing the validation of your self-signed certificates. Note that this is a potential security risk. For a better solution, configure a self-signed certificate you trust with `NODE_EXTRA_CA_CERTS`. .Procedure From ec882e5b2186be348f0698ab11e09ffca43a2d8e Mon Sep 17 00:00:00 2001 From: Jana Vrbkova Date: Fri, 20 Oct 2023 09:26:39 +0200 Subject: [PATCH 17/18] Update enabling-npm-artifact-repositories.adoc --- .../pages/enabling-npm-artifact-repositories.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc b/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc index 31086e0a85..4d3872571b 100644 --- a/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc +++ b/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc @@ -26,14 +26,14 @@ apiVersion: v1 metadata: name: tls-cer annotations: - controller.devfile.io/mount-path: /public-certs/nexus.cer + controller.devfile.io/mount-path: /public-certs controller.devfile.io/mount-as: file labels: controller.devfile.io/mount-to-devworkspace: 'true' controller.devfile.io/watch-secret: 'true' data: - tls.cer: >- - ____ <1> + nexus.cer: >- + ---- <1> Base64 encoding with disabled line wrapping. From d278bf9e4e2658e29856bbcfc4b597945e6aa934 Mon Sep 17 00:00:00 2001 From: Jana Vrbkova Date: Fri, 20 Oct 2023 09:27:22 +0200 Subject: [PATCH 18/18] Update enabling-npm-artifact-repositories.adoc --- .../pages/enabling-npm-artifact-repositories.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc b/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc index 4d3872571b..71138821f5 100644 --- a/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc +++ b/modules/end-user-guide/pages/enabling-npm-artifact-repositories.adoc @@ -33,7 +33,7 @@ metadata: controller.devfile.io/watch-secret: 'true' data: nexus.cer: >- - + __ <1> ---- <1> Base64 encoding with disabled line wrapping.