-
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.
Extract tabbed Prerequisites into a partial (#11961)
Backports #11710 While editing guides in certain sections to accommodate Cloud users (#10631), I introduced some inconsistencies into the way the Prerequisites sections in these guides provide instructions for users of Cloud, Open Source, and Enterprise Teleport. This change adds a partial that provides tabbed instructions to users of different Teleport editions when a guide requires a running Auth and Proxy Service. It then includes this partial where relevant in guides that fall under the scope of #10631. This helps ensure that cross-edition instructions are consistent in our guides, and makes it easier to edit additional guides to accommodate users of different editions. Caveats: - Since this change covers a lot of guides, it aims to be as small as possible. While all of these guides included links in their Prerequisites sections, for example, replacing these links with full instructions was out of the scope of this guide. This change should still make it easier to make further edits, e.g., in response to #11538. - We still need to change other elements of some guides to accommodate Cloud users. The current change only aims to standardize the Prerequisites section.
- Loading branch information
Showing
24 changed files
with
153 additions
and
504 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
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
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 |
---|---|---|
@@ -0,0 +1,53 @@ | ||
{/* | ||
TODO: Since we can't control the directory level of the page that uses this | ||
partial, and it is currently not possible to include absolute paths to MDX | ||
files in partials, this partial uses relative URL paths instead. | ||
*/} | ||
<Tabs> | ||
<TabItem scope={["oss"]} label="Open Source"> | ||
|
||
- A running Teleport cluster. For details on how to set this up, see one of our | ||
[Getting Started](/docs/getting-started) guides. | ||
|
||
- The `tctl` admin tool and `tsh` client tool version >= (=teleport.version=). | ||
|
||
```code | ||
$ tctl version | ||
# Teleport v(=teleport.version=) go(=teleport.golang=) | ||
$ tsh version | ||
# Teleport v(=teleport.version=) go(=teleport.golang=) | ||
``` | ||
|
||
See [Installation](/docs/installation) for details. | ||
|
||
</TabItem> | ||
<TabItem | ||
scope={["enterprise"]} label="Enterprise"> | ||
|
||
- A running Teleport cluster. For details on how to set this up, see our Enterprise | ||
[Getting Started](/docs/enterprise/getting-started) guide. | ||
|
||
- The `tctl` admin tool and `tsh` client tool version >= (=teleport.version=), | ||
which you can download by visiting the | ||
[customer portal](https://dashboard.gravitational.com/web/login). | ||
|
||
```code | ||
$ tctl version | ||
# Teleport v(=teleport.version=) go(=teleport.golang=) | ||
$ tsh version | ||
# Teleport v(=teleport.version=) go(=teleport.golang=) | ||
``` | ||
|
||
</TabItem> | ||
<TabItem scope={["cloud"]} | ||
label="Teleport Cloud"> | ||
|
||
- A Teleport Cloud account. If you do not have one, visit the | ||
[sign up page](https://goteleport.com/signup/) to begin your free trial. | ||
- The `tctl` admin tool and `tsh` client tool. To download these tools, visit | ||
the [Downloads](https://goteleport.com/download/) page. | ||
|
||
</TabItem> | ||
</Tabs> |
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
Oops, something went wrong.