diff --git a/helm/wekan/README.md b/helm/wekan/README.md index 52da23809..072c0548e 100644 --- a/helm/wekan/README.md +++ b/helm/wekan/README.md @@ -1 +1,8 @@ -# README \ No newline at end of file +# Helm Chart for Wekan + +## Features + + o Uses a MongoDB replica set by default - this allows fault-tolerant and scalable MongoDB deployment (or just set the replicas to 1 for a single server install) + + o Optional Horizontal Pod Autoscaler (HPA), so that your Wekan pods will scale automatically with increased CPU load. + diff --git a/helm/wekan/templates/NOTES.txt b/helm/wekan/templates/NOTES.txt index f2a92d613..8aa2e27b1 100644 --- a/helm/wekan/templates/NOTES.txt +++ b/helm/wekan/templates/NOTES.txt @@ -14,6 +14,6 @@ echo http://$SERVICE_IP:{{ .Values.service.port }} {{- else if contains "ClusterIP" .Values.service.type }} export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app={{ template "wekan.name" . }},release={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}") - echo "Visit http://127.0.0.1:8000 to use your application" - kubectl port-forward $POD_NAME 8000:8000 + echo "Visit http://127.0.0.1:8080 to use your application" + kubectl port-forward $POD_NAME 8080:8080 {{- end }} diff --git a/helm/wekan/values.yaml b/helm/wekan/values.yaml index b97b0a5f4..adc2c855c 100644 --- a/helm/wekan/values.yaml +++ b/helm/wekan/values.yaml @@ -27,10 +27,6 @@ credentials: accessKey: access-key secretKey: secret-key -## Specify log level (info, debug or trace) -## -logLevel: info - ## Specify additional environmental variables for the Deployment ## env: {}