Added some notes

This commit is contained in:
Stephen Randall 2019-03-04 16:28:44 +00:00
parent e7a90d9a7c
commit 115d07da5a
3 changed files with 10 additions and 7 deletions

View file

@ -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.

View file

@ -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 }}

View file

@ -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: {}