-
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.
Backports #11177 While addressing #10636, I noticed that the Details box that appears for Cloud users when they visit some of our Helm guides is in a slightly odd location, in the middle of a Prerequisites item. I have moved this to the top of each guide instead. I have also refactored the helm-install.mdx partial to split it into multiple partials, which allows us to use the "Step n/d" format in our Helm guides. Also adds a Cloud warning to the Digital Ocean Helm guide.
- Loading branch information
Showing
11 changed files
with
112 additions
and
71 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
48 changes: 0 additions & 48 deletions
48
docs/pages/kubernetes-access/helm/includes/helm-install.mdx
This file was deleted.
Oops, something went wrong.
11 changes: 11 additions & 0 deletions
11
docs/pages/kubernetes-access/helm/includes/helm-repo-add.mdx
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,11 @@ | ||
To allow Helm to install charts that are hosted in the Teleport Helm repository, use `helm repo add`: | ||
|
||
```code | ||
$ helm repo add teleport (=teleport.helm_repo_url=) | ||
``` | ||
|
||
To update the cache of charts from the remote repository, run `helm repo update`: | ||
|
||
```code | ||
$ helm repo update | ||
``` |
10 changes: 10 additions & 0 deletions
10
docs/pages/kubernetes-access/helm/includes/teleport-cluster-cloud-warning.mdx
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,10 @@ | ||
<Details scopeOnly={true} scope={["cloud"]} title="Teleport Cloud warning"> | ||
This guide shows you how to install the `teleport-cluster` Helm chart, which is intended to help you get started with Teleport by deploying the Auth Service and | ||
Proxy Service in a Kubernetes cluster so you can access that cluster via the Kubernetes Service. | ||
|
||
Since the Auth and Proxy Services are fully managed in Teleport Cloud, you should install our `teleport-kube-agent` chart, which is intended for deployments where the Auth Service and Proxy Service run outside your Kubernetes cluster. | ||
|
||
You can use the `teleport-kube-agent` chart to enable the Application Service and Database Service in addition to the Kubernetes Service. | ||
|
||
For more information, see our [Helm chart reference](../reference.mdx#teleport-kube-agent). | ||
</Details> |
12 changes: 12 additions & 0 deletions
12
docs/pages/kubernetes-access/helm/includes/teleport-cluster-install.mdx
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,12 @@ | ||
Teleport's charts require the use of Helm version 3. You can [install Helm 3 by following these instructions](https://helm.sh/docs/intro/install/). | ||
|
||
Throughout this guide, we will assume that you have the `helm` and `kubectl` binaries available in your `PATH`: | ||
|
||
```code | ||
$ helm version | ||
# version.BuildInfo{Version:"v(=helm.version=)"} | ||
$ kubectl version | ||
# Client Version: version.Info{Major:"(=kubernetes.major_version=)", Minor:"(=kubernetes.minor_version=)+"} | ||
# Server Version: version.Info{Major:"(=kubernetes.major_version=)", Minor:"(=kubernetes.minor_version=)+"} | ||
``` |
6 changes: 6 additions & 0 deletions
6
docs/pages/kubernetes-access/helm/includes/teleport-cluster-prereqs.mdx
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,6 @@ | ||
- [Kubernetes](https://kubernetes.io) >= v(=kubernetes.major_version=).(=kubernetes.minor_version=).0 | ||
- [Helm](https://helm.sh) >= v(=helm.version=) | ||
|
||
Verify that Helm and Kubernetes are installed and up to date. | ||
|
||
(!docs/pages/includes/permission-warning.mdx!) |
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