-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #73 from apinnick/main
Small updates
- Loading branch information
Showing
3 changed files
with
11 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
https://github.com/konveyor/community/tree/main/brand/logo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
[id="adding-source-provider_{context}"] | ||
= Adding a source provider | ||
|
||
You can add a VMware source provider by using the {project-short} web console. | ||
You can add VMware as a source provider by using the {project-short} web console. | ||
|
||
.Prerequisites | ||
|
||
|
@@ -18,22 +18,22 @@ You can add a VMware source provider by using the {project-short} web console. | |
. Select *VMware* from the *Type* list. | ||
. Fill in the following fields: | ||
|
||
* *Name*: vCenter name to display in the list of providers | ||
* *Hostname or IP address*: vCenter host name or IP address | ||
* *Username*: vCenter admin user name, for example, `[email protected]` | ||
* *Password*: vCenter password | ||
* *Certificate SHA1 Fingerprint*: vCenter server SSL SHA 1 fingerprint | ||
* *Name*: Name to display in the list of providers | ||
* *Hostname or IP address*: ESXi host name or IP address | ||
* *Username*: ESXi admin user name, for example, `[email protected]` | ||
* *Password*: ESXi admin password | ||
* *Certificate SHA1 Fingerprint*: ESXi SHA-1 fingerprint | ||
+ | ||
To obtain the vCenter server SSL fingerprint, enter the following command: | ||
To obtain the ESXi SHA-1 fingerprint, enter the following command: | ||
+ | ||
[source,terminal] | ||
---- | ||
$ openssl s_client \ | ||
-connect <vcenter.example.com>:443 < /dev/null 2>/dev/null \ <1> | ||
-connect <www.example.com>:443 < /dev/null 2>/dev/null \ <1> | ||
| openssl x509 -fingerprint -noout -in /dev/stdin \ | ||
| cut -d '=' -f 2 | ||
---- | ||
<1> Specify the vCenter server host name. | ||
<1> Specify the ESXi host name. | ||
|
||
. Click *Add* to add and save the provider. | ||
+ | ||
|