diff options
author | Stephen Randall <stephen.randall@appsbroker.com> | 2019-03-04 16:28:44 +0000 |
---|---|---|
committer | Stephen Randall <stephen.randall@appsbroker.com> | 2019-03-04 16:28:44 +0000 |
commit | 115d07da5af3ac56d49399bb1537fc7593abf6dd (patch) | |
tree | 2af634e5dbca3e3b07b2f0a09da38059385b3155 | |
parent | e7a90d9a7ce15d9405f5d750593715306a542c83 (diff) | |
download | wekan-115d07da5af3ac56d49399bb1537fc7593abf6dd.tar.gz wekan-115d07da5af3ac56d49399bb1537fc7593abf6dd.tar.bz2 wekan-115d07da5af3ac56d49399bb1537fc7593abf6dd.zip |
Added some notes
-rw-r--r-- | helm/wekan/README.md | 9 | ||||
-rw-r--r-- | helm/wekan/templates/NOTES.txt | 4 | ||||
-rw-r--r-- | helm/wekan/values.yaml | 4 |
3 files changed, 10 insertions, 7 deletions
diff --git a/helm/wekan/README.md b/helm/wekan/README.md index 52da2380..072c0548 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 f2a92d61..8aa2e27b 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 b97b0a5f..adc2c855 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: {} |