From 7ad2f126158354b293eca1687c1a1d33b010616b Mon Sep 17 00:00:00 2001 From: Catherine Luse Date: Thu, 16 Jan 2020 15:37:58 -0700 Subject: [PATCH] Fix formatting on server tags page --- .../options/server-tags/_index.md | 38 +++++++++---------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/content/rancher/v2.x/en/installation/options/server-tags/_index.md b/content/rancher/v2.x/en/installation/options/server-tags/_index.md index e3abff97965..7dd49511c56 100644 --- a/content/rancher/v2.x/en/installation/options/server-tags/_index.md +++ b/content/rancher/v2.x/en/installation/options/server-tags/_index.md @@ -22,8 +22,8 @@ Refer to the [Helm version requirements]({{}}/rancher/v2.x/en/installat Rancher provides several different Helm chart repositories to choose from. We align our latest and stable Helm chart repositories with the Docker tags that are used for a single node installation. Therefore, the `rancher-latest` repository will contain charts for all the Rancher versions that have been tagged as `rancher/rancher:latest`. When a Rancher version has been promoted to the `rancher/rancher:stable`, it will get added to the `rancher-stable` repository. -| Type | Command to Add the Repo | Description of the Repo | -| -------------- | -------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| Type | Command to Add the Repo | Description of the Repo | +| -------------- | ------------ | ----------------- | | rancher-latest | `helm repo add rancher-latest https://releases.rancher.com/server-charts/latest` | Adds a repository of Helm charts for the latest versions of Rancher. We recommend using this repo for testing out new Rancher builds. | | rancher-stable | `helm repo add rancher-stable https://releases.rancher.com/server-charts/stable` | Adds a repository of Helm charts for older, stable versions of Rancher. We recommend using this repo for production environments. | | rancher-alpha | `helm repo add rancher-alpha https://releases.rancher.com/server-charts/alpha` | Adds a repository of Helm charts for alpha versions of Rancher for previewing upcoming releases. These releases are discouraged in production environments. Upgrades _to_ or _from_ charts in the rancher-alpha repository to any other chart, regardless or repository, aren't supported. | @@ -49,37 +49,37 @@ After installing Rancher, if you want to change which Helm chart repository to i 1. List the current Helm chart repositories. - ``` - helm repo list + ```plain + helm repo list - NAME URL - stable https://kubernetes-charts.storage.googleapis.com - rancher- https://releases.rancher.com/server-charts/ - ``` + NAME URL + stable https://kubernetes-charts.storage.googleapis.com + rancher- https://releases.rancher.com/server-charts/ + ``` 2. Remove the existing Helm Chart repository that contains your charts to install Rancher, which will either be `rancher-stable` or `rancher-latest` depending on what you had initially added. - ``` - helm repo remove rancher- - ``` + ```plain + helm repo remove rancher- + ``` 3. Add the Helm chart repository that you want to start installing Rancher from. - ``` - helm repo add rancher- https://releases.rancher.com/server-charts/ - ``` + ```plain + helm repo add rancher- https://releases.rancher.com/server-charts/ + ``` 4. Continue to follow the steps to [upgrade Rancher]({{< baseurl >}}/rancher/v2.x/en/upgrades/upgrades/ha-server-upgrade-helm/) from the new Helm chart repository. - {{% /tab %}} - {{% tab "Docker Images" %}} - When performing [single-node installs]({{< baseurl >}}/rancher/v2.x/en/installation/single-node), upgrades, or rollbacks, you can use _tags_ to install a specific version of Rancher. +{{% /tab %}} +{{% tab "Docker Images" %}} +When performing [single-node installs]({{< baseurl >}}/rancher/v2.x/en/installation/single-node), upgrades, or rollbacks, you can use _tags_ to install a specific version of Rancher. ### Server Tags Rancher Server is distributed as a Docker image, which have tags attached to them. You can specify this tag when entering the command to deploy Rancher. Remember that if you use a tag without an explicit version (like `latest` or `stable`), you must explicitly pull a new version of that image tag. Otherwise, any image cached on the host will be used. -| Tag | Description | -| -------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| Tag | Description | +| -------------------------- | ------ | | `rancher/rancher:latest` | Our latest development release. These builds are validated through our CI automation framework. These releases are not recommended for production environments. | | `rancher/rancher:stable` | Our newest stable release. This tag is recommended for production. | | `rancher/rancher:` | You can install specific versions of Rancher by using the tag from a previous release. See what's available at DockerHub. |