You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* feat(chaoskube): add chaoskube helm chart
* feat(chaoskube): make dry run mode the default
* fix(chaoskube): change the wording explaining dryRun
* fix(chaoskube): better explain how to disable dryRun
* fix(chaoskube): remove useless empty line
* chore(chaoskube): move chaoskube to stable
* fix(chaoskube): update docs to reflect move to stable
* docs(chaoskube): explain what helm install does
[chaoskube](https://github.com/linki/chaoskube) periodically kills random pods in your Kubernetes cluster.
4
+
5
+
## TL;DR;
6
+
7
+
```console
8
+
$ helm install stable/chaoskube
9
+
```
10
+
11
+
## Installing the Chart
12
+
13
+
To install the chart with the release name `my-release`:
14
+
15
+
```console
16
+
$ helm install --name my-release stable/chaoskube
17
+
```
18
+
19
+
The command deploys chaoskube on the Kubernetes cluster in the default configuration. The [configuration](#configuration) section lists the parameters that can be configured during installation.
20
+
21
+
## Uninstalling the Chart
22
+
23
+
To uninstall/delete the my-release deployment:
24
+
25
+
```console
26
+
$ helm delete my-release
27
+
```
28
+
29
+
The command removes all the Kubernetes components associated with the chart and deletes the release.
30
+
31
+
## Configuration
32
+
33
+
By default `chaoskube` runs in dry-run mode so it doesn't actually kill anything.
34
+
If you're sure you want to use it run `helm` with:
0 commit comments