Update consul-k8s install command so it is valid (#17310)

This commit is contained in:
Tu Nguyen 2023-05-11 11:55:23 -07:00 committed by GitHub
parent cd80ea18ff
commit 30eee13cb9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -128,20 +128,20 @@ Complete the following instructions to install a specific version of the CLI so
1. Download the appropriate version of Consul K8s CLI using the following `curl` command. Set the `$VERSION` environment variable to the appropriate version for your deployment. 1. Download the appropriate version of Consul K8s CLI using the following `curl` command. Set the `$VERSION` environment variable to the appropriate version for your deployment.
```shell-session ```shell-session
$ export VERSION=1.0 && \ $ export VERSION=1.1.1 && \
curl --location "https://releases.hashicorp.com/consul-k8s/${VERSION}/consul-k8s_${VERSION}_darwin_amd64.zip" --output consul-k8s-cli.zip curl --location "https://releases.hashicorp.com/consul-k8s/${VERSION}/consul-k8s_${VERSION}_darwin_amd64.zip" --output consul-k8s-cli.zip
``` ```
1. Unzip the zip file output to extract the `consul-k8s` CLI binary. This overwrites existing files and also creates a `.consul-k8s` subdirectory in your `$HOME` folder. 1. Unzip the zip file output to extract the `consul-k8s` CLI binary. This overwrites existing files and also creates a `.consul-k8s` subdirectory in your `$HOME` folder.
```shell-session ```shell-session
$ unzip -o consul-k8s-cli.zip -d ~/.consul-k8s $ unzip -o consul-k8s-cli.zip -d ~/consul-k8s
``` ```
1. Add the path to your directory. In order to persist the `$PATH` across sessions, dd it to your shellrc (i.e. shell run commands) file for the shell used by your terminal. 1. Add the path to your directory. In order to persist the `$PATH` across sessions, dd it to your shellrc (i.e. shell run commands) file for the shell used by your terminal.
```shell-session ```shell-session
$ export PATH=$PATH:$HOME/.consul-k8s/ $ export PATH=$PATH:$HOME/consul-k8s
``` ```
1. (Optional) Issue the `consul-k8s version` command to verify the installation. 1. (Optional) Issue the `consul-k8s version` command to verify the installation.