Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Ensure that githost contains URL but not just hostname #2638

Merged
merged 3 commits into from
Aug 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .htmltest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -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=__<path_to_certificate>__ \ <1>
--from-literal=githost=__<host:port>__ -n {prod-namespace} <2>
--from-literal=githost=__<git_server_url>__ -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 e.g. `https://git.example.com:8443`. When omitted, the self-signed certificate is used for all repositories over HTTPS.
+
[NOTE]
====
Expand Down
Loading