From a3d44b07749443c67e17aec7d2bb24264a581946 Mon Sep 17 00:00:00 2001 From: Cansu Kavili Date: Wed, 8 Apr 2020 14:38:55 +0200 Subject: [PATCH] README updated --- helm/wekan/README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/helm/wekan/README.md b/helm/wekan/README.md index d3af930cb..38cb5fedd 100644 --- a/helm/wekan/README.md +++ b/helm/wekan/README.md @@ -56,3 +56,10 @@ mongodb-replicaset: This section controls the scale of the MongoDB redundant Replica Set. **replicas:** This is the number of MongoDB instances to include in the set. You can set this to 1 for a single server - this will still allow you to scale-up later with a helm upgrade. + +### Install OCP route +If you use this chart to deploy Wekan on an OCP cluster, you can create route instead of ingress with following command: + +``` bash +$ helm template --set route.enabled=true,ingress.enabled=false values.yaml . | oc apply -f- +```