项目作者: cloudflavor

项目描述 :
wekan on kubernetes
高级语言:
项目地址: git://github.com/cloudflavor/wekan-k8s.git
创建时间: 2017-07-19T19:07:47Z
项目社区:https://github.com/cloudflavor/wekan-k8s

开源协议:Apache License 2.0

下载


Wekan on kubernetes

Deploying in kubernetes requires an existing mongodb instance running already
in the cluster. The Wekan deployment expects a service named mongodb on port
27017 installed.
You can install a mongodb instance with helm.

e.g.:

  1. helm install --name mongodb stable/mongodb --namespace wekan-project --set mongodbRootPassword="pass",mongodbUsername="wekan",mongodbPassword="pass",mongodbDatabase="wekan"

The --name above will set, among other things, the name of the service that
helm will create. Make sure that name matches the entry in the
deployment configuration under service.

Replace the following value with the ones you have in the
deployment file.

  1. - name: MONGO_URL
  2. value: mongodb://wekan:pass@mongodb:27017/wekan
  3. - name: PORT
  4. value: "8080"
  5. - name: ROOT_URL
  6. value: http://my.domain.com

Ingress

Replace

  1. - host: my.domain.com

with the proper subdomain name your kubernetes ingress manages.