Skip to content

Commit 20adc71

Browse files
authored
Merge pull request #1500 from madeline-underwood/Helm
Editorial review of Helm_approved for merging
2 parents ab50d0e + 4d6404d commit 20adc71

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

content/install-guides/helm.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,17 @@ tool_install: true
2121
weight: 1
2222
---
2323

24-
[Helm](https://helm.sh/) is a package manager for Kubernetes. It helps you manage Kubernetes applications.
24+
[Helm](https://helm.sh/) is a tool for managing Kubernetes packages in a format called charts. A chart is a group of configuration files that give you the resources that you need to deploy an application to a Kubernetes cluster.
2525

26-
Helm is available for Windows, macOS, and Linux and supports the Arm architecture.
26+
Helm supports the Arm architecture, and is available for Windows, macOS, and Linux.
2727

2828
## Before you begin
2929

30-
[General installation information](https://helm.sh/docs/intro/install/) is available which covers all supported operating systems.
30+
There is documentation available on [Installing Helm](https://helm.sh/docs/intro/install/) which covers all supported operating systems.
3131

32-
This article provides a quick solution to install Helm for Ubuntu on Arm.
32+
This Install Guide gives you a quick solution for installing Helm for Ubuntu on Arm.
3333

34-
Confirm you are using an Arm machine by running:
34+
To start, confirm you are using an Arm machine by running:
3535

3636
```bash
3737
uname -m
@@ -44,21 +44,21 @@ aarch64
4444

4545
If you see a different result, you are not using an Arm computer running 64-bit Linux.
4646

47-
You may need to install `curl` and `wget` if you don't have them installed.
47+
You might need to install `curl` and `wget` if you do not already have them installed:
4848

4949
```bash
5050
sudo apt install -y curl wget
5151
```
5252

5353
## How do I download and install Helm?
5454

55-
There are multiple ways to install Helm for Ubuntu on Arm, pick the one you like most.
55+
There are multiple ways to install Helm for Ubuntu on Arm. Here are three options from which you can choose.
5656

5757
### Option 1: Install using the release tar file
5858

5959
Download and install the latest version.
6060

61-
There is just one executable to copy to the desired location.
61+
There is just one executable to copy to the desired location:
6262

6363
```bash
6464
HELM_VER=`curl -s https://api.github.com/repos/helm/helm/releases/latest | grep tag_name | cut -d: -f2 | tr -d \"\,\v | awk '{$1=$1};1'`
@@ -69,7 +69,7 @@ sudo cp linux-arm64/helm /usr/local/bin/
6969

7070
### Option 2: Install using the apt package manager
7171

72-
You can also install Helm using the apt package manager.
72+
You can also install Helm using the apt package manager:
7373

7474
```bash
7575
curl https://baltocdn.com/helm/signing.asc | sudo apt-key add -
@@ -81,15 +81,15 @@ sudo apt-get install helm
8181

8282
### Option 3: Install using Snap
8383

84-
Helm can also be installed using Snap.
84+
Snap is another option for installing Helm:
8585

8686
```bash
8787
sudo snap install helm --classic
8888
```
8989

90-
### How do I confirm Helm is installed?
90+
### How do I confirm that Helm is installed?
9191

92-
Regardless of which option you use, confirm the executable is available.
92+
Regardless of which option you are using, confirm the executable is available:
9393

9494
```bash
9595
helm version

0 commit comments

Comments
 (0)