2
0
Stephen Randall 6 жил өмнө
parent
commit
115d07da5a

+ 8 - 1
helm/wekan/README.md

@@ -1 +1,8 @@
-# README
+# 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.
+

+ 2 - 2
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 }}

+ 0 - 4
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: {}