-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Cloud-specific instructions to two guides
Backports #10674 * Add Cloud-specific instructions to two guides Ensure that users of a particular scope don't see irrelevant info See #10633 GitHub SSO guide - Edit the tctl partial to show only scope-relevant info. - Use tabs in the Prerequisites - Light edits for clarity Adding Nodes - Use Tabs for prerequisites - Move sections specific to self-hosted deployments into Details boxes that are hidden for Cloud users - Use Tabs components to offer Cloud-specific alternatives to examples of commands that presuppose a self-hosted deployment - Misc clarity edits * Respond to PR feedback * Fix linter issues
- Loading branch information
Showing
8 changed files
with
297 additions
and
221 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
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 |
---|---|---|
@@ -1,22 +1,34 @@ | ||
<Details title="Before you begin: verify connectivity" opened={false}> | ||
<Details | ||
title="Make sure you can connect to Teleport" | ||
scope={["oss", "enterprise"]} | ||
scopeOnly={true} | ||
opened={true} | ||
> | ||
|
||
Verify that your Teleport client is connected: | ||
Verify that your Teleport client is connected by running the following on your | ||
Auth Service host: | ||
|
||
```code | ||
$ tctl status | ||
# Cluster tele.example.com | ||
# Version (=teleport.version=) | ||
# CA pin sha256:sha-hash-here | ||
``` | ||
</Details> | ||
<Details | ||
title="Make sure you can connect to Teleport" | ||
scope={["cloud"]} | ||
scopeOnly={true} | ||
opened={true} | ||
> | ||
|
||
<Notice title="Connecting to the cloud" type="note" scope={["cloud"]}> | ||
To try this flow in the cloud, login into your cluster using `tsh`, then use `tctl` remotely: | ||
To connect to Teleport, log in to your cluster using `tsh`, then use `tctl` remotely: | ||
|
||
```code | ||
$ tsh login --proxy=myinstance.teleport.sh | ||
$ tsh login --proxy=myinstance.teleport.sh [email protected] | ||
$ tctl status | ||
# Cluster myinstance.teleport.sh | ||
# Version (=teleport.version=) | ||
# CA pin sha256:sha-hash-here | ||
``` | ||
</Notice> | ||
|
||
</Details> |
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
Oops, something went wrong.