Skip to content

Commit b27e832

Browse files
committed
docs: add img
1 parent 3a81e75 commit b27e832

File tree

2 files changed

+7
-17
lines changed

2 files changed

+7
-17
lines changed

docs/guide/helm.md

Lines changed: 7 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,13 @@ To follow up on this tutorial, ensure you have the following:
1414
- **Clone Repo**: We have provided an example repository to help you follow this tutorial. You can clone the [repo here](https://github.com/stateful/blog-examples/blob/main/Cloud-native/helm/helm.md).
1515
- **Require Packages**: Install the required packages ([kind](https://kind.sigs.k8s.io/docs/user/quick-start/),[kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl-linux/), [Helm](https://helm.sh/docs/intro/install/), etc. ) inside your Markdown file. *Runme allows you to achieve this! Simply run the command in the [prerequisite section](https://github.com/stateful/blog-examples/blob/main/Cloud-native/helm/helm.md#prerequiste) in the repo.*
1616

17-
Create a cell in your Rume notebook and run the command below to install the necessary packages.
18-
19-
Follow the instructions and commands in the above [notebook](https://github.com/stateful/blog-examples/blob/main/Cloud-native/helm/helm.md) for this guide.
20-
2117
Create a cell in your Rume notebook and run the command below to install the required packages. See example below:
2218

2319
![helm pre requiste section](../../static/img/guide-page/helm-prerequiste.png)
2420

25-
Using the Runme [cell section](../configuration/cellsection) feature you can run the entire subheading at a go
21+
Using the Runme [cell section](../configuration/cellsection) feature you can run the entire subheading at a go.
22+
23+
Follow the instructions and commands in the above [notebook](https://github.com/stateful/blog-examples/blob/main/Cloud-native/helm/helm.md) for this guide.
2624

2725
## **Creating A Helm Chart Within Your Runme Environment**
2826

@@ -47,16 +45,10 @@ The `helm install` section of this guide installs the Kubernetes Ingress contro
4745

4846
Successfully installed with your Runme terminal:tada:
4947

50-
To uninstall Ingress Controller :
51-
52-
```sh
53-
helm uninstall ingress-nginx
54-
```
55-
5648
## **Upgrading Helm Packages With Runme**
5749

5850
The `helm upgrade` command upgrades a release to a new version of a chart or applies changes to an existing release.
59-
Helm plugins are external tools or extensions that enhance the functionality of the Helm CLI. Plugins allow users to extend Helm’s capabilities by adding new commands or features without modifying the core Helm codebase.
51+
Helm plugins are external tools or extensions that enhance the functionality of the Helm CLI.
6052

6153
With Runme, you can modify the [working directory](../configuration/cell-level#cells-current-working-directory) for your code cell to a file directory of your choice. This enables you to easily run `values.yaml` even if the file is not located in the same directory as your markdown file.
6254

@@ -72,7 +64,7 @@ helm status ingress-nginx
7264

7365
## **Implementing Helm Rollback**
7466

75-
In your Runme notebook, you can revert to a specific historical version of a Helm release within your Kubernetes cluster. Using the `helm rollback` command, Along side the name of the release and the revision number you want to deploy.
67+
In your Runme notebook, you can revert to a specific historical version of a Helm release within your Kubernetes cluster. Using the `helm rollback` command, along side the name of the release and the revision number you want to deploy.
7668

7769
![helm rollback](../../static/img/guide-page/runme-helm-rollback.png)
7870

@@ -84,13 +76,11 @@ helm status ingress-nginx
8476

8577
The `helm get` command in Helm is used to retrieve information about a specific release or resource within a release. It provides various subcommands to fetch different types of information related to Helm releases.
8678

87-
```sh
88-
helm get manifest ingress-nginx
89-
```
79+
![helm get manifest](../../static/img/guide-page/helmget.png)
9080

9181
## **Add Helm Plugin**
9282

93-
Helm plugins are external tools or extensions that enhance the functionality of the Helm CLI. For this guide, we installed the `sops` plugin to use it encrypt our kubernetes secret
83+
Helm plugins are external tools or extensions that enhance the functionality of the Helm CLI. For this guide, we installed the `sops` plugin to use it encrypt our kubernetes secret.
9484

9585
![runme-plugins](../../static/img/guide-page/runme-helm-plugins.png)
9686

static/img/guide-page/helmget.png

76.7 KB
Loading

0 commit comments

Comments
 (0)