Skip to content

Commit 107013a

Browse files
committed
further changes to improve helm deployment instructions
1 parent d54a67c commit 107013a

File tree

1 file changed

+21
-8
lines changed

1 file changed

+21
-8
lines changed

charts/kamaji/README.md

+21-8
Original file line numberDiff line numberDiff line change
@@ -32,23 +32,32 @@ This Helm Chart starting from v0.1.1 provides the installation of an internal `e
3232
## Install Kamaji
3333
To add the Clastix helm repository:
3434

35-
helm repo add clastix https://clastix.github.io/charts
35+
```bash
36+
helm repo add clastix https://clastix.github.io/charts
37+
```
3638

3739
To install the Chart with the release name `kamaji`:
3840

39-
helm upgrade --install --namespace kamaji-system --create-namespace kamaji clastix/kamaji
41+
```bash
42+
helm upgrade --install --namespace kamaji-system --create-namespace kamaji clastix/kamaji
43+
```
4044

4145
Show the status:
42-
43-
helm status kamaji -n kamaji-system
46+
```bash
47+
helm status kamaji -n kamaji-system
48+
```
4449

4550
Upgrade the Chart
4651

47-
helm upgrade kamaji -n kamaji-system clastix/kamaji
52+
```bash
53+
helm upgrade kamaji -n kamaji-system clastix/kamaji
54+
```
4855

4956
Uninstall the Chart
5057

51-
helm uninstall kamaji -n kamaji-system
58+
```bash
59+
helm uninstall kamaji -n kamaji-system
60+
```
5261

5362
## Customize the installation
5463

@@ -58,13 +67,17 @@ The `--values` option is the preferred method because it allows you to keep your
5867

5968
Specify your overrides file when you install the Chart:
6069

61-
helm upgrade kamaji --install --namespace kamaji-system --create-namespace clastix/kamaji --values myvalues.yaml
70+
```bash
71+
helm upgrade kamaji --install --namespace kamaji-system --create-namespace clastix/kamaji --values myvalues.yaml
72+
```
6273

6374
The values in your overrides file `myvalues.yaml` will override their counterparts in the Chart's values.yaml file. Any values in `values.yaml` that weren’t overridden will keep their defaults.
6475

6576
If you only need to make minor customizations, you can specify them on the command line by using the `--set` option. For example:
6677

67-
helm upgrade kamaji --install --namespace kamaji-system --create-namespace clastix/kamaji --set etcd.deploy=false
78+
```bash
79+
helm upgrade kamaji --install --namespace kamaji-system --create-namespace clastix/kamaji --set etcd.deploy=false
80+
```
6881

6982
Here the values you can override:
7083

0 commit comments

Comments
 (0)