Skip to content

Commit 8497a63

Browse files
authored
Merge pull request #1907 from richardmcsong/patch-2
Replace get-helm-3 with get-helm-4
2 parents 3ee842e + 3e1804f commit 8497a63

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

docs/intro/install.mdx

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@ description: Learn how to install and get running with Helm.
44
sidebar_position: 2
55
---
66

7-
import Helm4 from "../_v4-in-progress.mdx"
8-
9-
<Helm4/>
10-
117
This guide shows how to install the Helm CLI. Helm can be installed either from
128
source, or from pre-built binary releases.
139

@@ -25,7 +21,7 @@ releases for a variety of OSes. These binary versions can be manually downloaded
2521
and installed.
2622

2723
1. Download your [desired version](https://github.com/helm/helm/releases)
28-
2. Unpack it (`tar -zxvf helm-v3.0.0-linux-amd64.tar.gz`)
24+
2. Unpack it (`tar -zxvf helm-v4.0.0-linux-amd64.tar.gz`)
2925
3. Find the `helm` binary in the unpacked directory, and move it to its desired
3026
destination (`mv linux-amd64/helm /usr/local/bin/helm`)
3127

@@ -47,13 +43,13 @@ You can fetch that script, and then execute it locally. It's well documented so
4743
that you can read through it and understand what it is doing before you run it.
4844

4945
```console
50-
$ curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3
46+
$ curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-4
5147
$ chmod 700 get_helm.sh
5248
$ ./get_helm.sh
5349
```
5450

5551
Yes, you can `curl
56-
https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash` if
52+
https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-4 | bash` if
5753
you want to live on the edge.
5854

5955
## Through Package Managers
@@ -164,7 +160,7 @@ links to the common builds:
164160
### From Source (Linux, macOS)
165161

166162
Building Helm from source is slightly more work, but is the best way to go if
167-
you want to test the latest (pre-release) Helm version.
163+
you want to test the latest Helm version.
168164

169165
You must have a working Go environment.
170166

0 commit comments

Comments
 (0)