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 22, 2024
1 parent e28a04b commit e1c87c0
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
23 changes: 23 additions & 0 deletions docs/docs/installation/configuration/Openshift.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
comments: true
---

# Installing on Openshift

To install on Openshift, set the value `global.isOpenshift` in the `values.yaml` file to true.
In practice this means that `runAsUser` and `runAsGroup` are removed, since
Openshift sets those automatically.

You can set the `global.isOpenshift` parameter when running the `helm install` command:

```shell
helm install keptn keptn --set global.openShift.enabled=true
```

or you can define it in your `values.yaml` file:

```yaml
global:
openShift:
enabled: true
```
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ nav:
- vCluster installation: docs/installation/configuration/vcluster.md
- Keptn + cert-manager.io: docs/installation/configuration/cert-manager.md
- Deploy Keptn via ArgoCD: docs/installation/configuration/argocd.md
- Deploy Keptn on OpenShift: docs/installation/configuration/Openshift.md
- Installation Tips and Tricks: docs/installation/tips-tricks.md
- Troubleshooting Guide: docs/installation/troubleshooting.md
- Kubernetes cluster: docs/installation/k8s.md
Expand Down

0 comments on commit e1c87c0

Please sign in to comment.