Skip to content

Commit 210c73e

Browse files
Improve deployment instructions
1 parent cbbe260 commit 210c73e

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

helm/targer/README.md

+10-2
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,27 @@
22

33
Helm chart for installing Targer on a Kubernetes cluster.
44

5+
In the following commands `NAME` is the release name. That name is used for naming Pods, Volumes etc. A Kubernetes namespace may be configured in `NAMESPACE`. Skip the `-n NAMESPACE` option to deploy to the default namespace.
6+
57
## Deployment
68

79
1. Install [Helm](https://helm.sh/docs/intro/quickstart/) and configure `kubectl` for your cluster.
810
2. Generate Kubernetes templates for manual error checking:
911

1012
```shell script
11-
helm template targer targer
13+
helm -n NAMESPACE template NAME targer
1214
```
1315

1416
This step can be skipped, but the generated template gives you a good preview what will be deployed in the next step.
1517
3. Deploy to Kubernetes cluster:
1618

1719
```shell script
18-
helm install targer targer
20+
helm -n NAMESPACE install NAME targer
21+
```
22+
23+
4. If you have previously deployed TARGER to your Kubernetes cluster, you can upgrade the release:
24+
25+
```shell script
26+
helm -n NAMESPACE upgrade NAME targer
1927
```
2028

0 commit comments

Comments
 (0)