From d85827aa2c39e1602d7895df7993e06979330d40 Mon Sep 17 00:00:00 2001 From: Anatolii Bazko Date: Thu, 10 Aug 2023 10:18:10 +0200 Subject: [PATCH 1/3] chore: Ensure that contains URL but not just hostname Signed-off-by: Anatolii Bazko --- ...rt-for-git-repositories-with-self-signed-certificates.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/administration-guide/pages/deploying-che-with-support-for-git-repositories-with-self-signed-certificates.adoc b/modules/administration-guide/pages/deploying-che-with-support-for-git-repositories-with-self-signed-certificates.adoc index 62bfd95c5e..8d411604f2 100644 --- a/modules/administration-guide/pages/deploying-che-with-support-for-git-repositories-with-self-signed-certificates.adoc +++ b/modules/administration-guide/pages/deploying-che-with-support-for-git-repositories-with-self-signed-certificates.adoc @@ -23,10 +23,10 @@ You can configure {prod-short} to support operations on Git providers that use s ---- $ {orch-cli} create configmap che-git-self-signed-cert \ --from-file=ca.crt=____ \ <1> - --from-literal=githost=____ -n {prod-namespace} <2> + --from-literal=githost=____ -n {prod-namespace} <2> ---- <1> Path to the self-signed certificate. -<2> Optional parameter to specify the `https://` host and port of the HTTPS connection on the Git server. When omitted, the self-signed certificate is used for all repositories over HTTPS. +<2> Optional parameter to specify the Git server URL. When omitted, the self-signed certificate is used for all repositories over HTTPS. For instance `https://git.example.com:8443`. + [NOTE] ==== From 9bde71f666a7467b51298e041a4dfd026dd46867 Mon Sep 17 00:00:00 2001 From: Anatolii Bazko Date: Thu, 10 Aug 2023 10:28:56 +0200 Subject: [PATCH 2/3] add sample url to ignore list Signed-off-by: Anatolii Bazko --- .htmltest.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.htmltest.yml b/.htmltest.yml index 41a9aa2f3c..270104c587 100644 --- a/.htmltest.yml +++ b/.htmltest.yml @@ -28,3 +28,4 @@ IgnoreURLs: - https://che.eclipseprojects.io/ - https://app.vsaex.visualstudio.com/app/register/ - https://mattermost.eclipse.org/eclipse/channels/eclipse-che + - https://git.example.com:8443 From ad328dd76225cd6b6f2527797201489c5969064f Mon Sep 17 00:00:00 2001 From: Anatolii Bazko Date: Thu, 10 Aug 2023 10:40:40 +0200 Subject: [PATCH 3/3] Update modules/administration-guide/pages/deploying-che-with-support-for-git-repositories-with-self-signed-certificates.adoc Co-authored-by: Ilya Buziuk --- ...port-for-git-repositories-with-self-signed-certificates.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/administration-guide/pages/deploying-che-with-support-for-git-repositories-with-self-signed-certificates.adoc b/modules/administration-guide/pages/deploying-che-with-support-for-git-repositories-with-self-signed-certificates.adoc index 8d411604f2..a01862b6fa 100644 --- a/modules/administration-guide/pages/deploying-che-with-support-for-git-repositories-with-self-signed-certificates.adoc +++ b/modules/administration-guide/pages/deploying-che-with-support-for-git-repositories-with-self-signed-certificates.adoc @@ -26,7 +26,7 @@ $ {orch-cli} create configmap che-git-self-signed-cert \ --from-literal=githost=____ -n {prod-namespace} <2> ---- <1> Path to the self-signed certificate. -<2> Optional parameter to specify the Git server URL. When omitted, the self-signed certificate is used for all repositories over HTTPS. For instance `https://git.example.com:8443`. +<2> Optional parameter to specify the Git server URL e.g. `https://git.example.com:8443`. When omitted, the self-signed certificate is used for all repositories over HTTPS. + [NOTE] ====