Skip to content

Commit

Permalink
docs: Add documentation about running on Openshift.
Browse files Browse the repository at this point in the history
Signed-off-by: John Allberg <john@ayoy.se>
  • Loading branch information
smuda committed Apr 13, 2024
1 parent 747a0b7 commit 72142ea
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions docs/docs/installation/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,25 @@ To implement this:
* Paste those lines into your `values.yaml` file
and modify their values in that file.

### Installing on Openshift

To install on Openshift, set the value `global.isOpenshift` to true.
In practice this means that runAsUser and runAsGroup is removed, since
Openshift set those automatically.

Setting `global.isOpenshift` can be done when running helm installation command:

```shell
helm install keptn keptn --set global.isOpenshift=true
```

or by including it in your values.yaml:

```yaml
global:
isOpenshift: true
```

### Modify Helm values

To modify Helm values:
Expand Down

0 comments on commit 72142ea

Please sign in to comment.