Skip to content

Commit 73b1265

Browse files
Editorial review of Helm.
1 parent dc01467 commit 73b1265

File tree

1 file changed

+12
-10
lines changed

1 file changed

+12
-10
lines changed

content/install-guides/helm.md

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +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.
2525

26-
Helm is available for Windows, macOS, and Linux and supports the Arm architecture.
26+
A chart is a group of configuration files that give you the resources that you need to deploy an application to a Kubernetes cluster.
27+
28+
Helm supports the Arm architecture, and is available for Windows, macOS, and Linux.
2729

2830
## Before you begin
2931

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

32-
This article provides a quick solution to install Helm for Ubuntu on Arm.
34+
This article gives you a quick solution to install Helm for Ubuntu on Arm.
3335

3436
Confirm you are using an Arm machine by running:
3537

@@ -44,7 +46,7 @@ aarch64
4446

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

47-
You may need to install `curl` and `wget` if you don't have them installed.
49+
You might need to install `curl` and `wget` if you don't already have them installed.
4850

4951
```bash
5052
sudo apt install -y curl wget
@@ -58,7 +60,7 @@ There are multiple ways to install Helm for Ubuntu on Arm, pick the one you like
5860

5961
Download and install the latest version.
6062

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

6365
```bash
6466
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 +71,7 @@ sudo cp linux-arm64/helm /usr/local/bin/
6971

7072
### Option 2: Install using the apt package manager
7173

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

7476
```bash
7577
curl https://baltocdn.com/helm/signing.asc | sudo apt-key add -
@@ -81,15 +83,15 @@ sudo apt-get install helm
8183

8284
### Option 3: Install using Snap
8385

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

8688
```bash
8789
sudo snap install helm --classic
8890
```
8991

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

92-
Regardless of which option you use, confirm the executable is available.
94+
Regardless of which option you use, confirm the executable is available:
9395

9496
```bash
9597
helm version

0 commit comments

Comments
 (0)