mirror of
https://github.com/wekan/wekan.git
synced 2026-02-03 07:01:47 +01:00
Added some notes
This commit is contained in:
parent
e7a90d9a7c
commit
115d07da5a
3 changed files with 10 additions and 7 deletions
|
|
@ -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.
|
||||
|
||||
|
|
|
|||
|
|
@ -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 }}
|
||||
|
|
|
|||
|
|
@ -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: {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue