mirror of https://github.com/wekan/wekan
The Open Source kanban (built with Meteor). Keep variable/table/field names camelCase. For translations, only add Pull Request changes to wekan/i18n/en.i18n.json , other translations are done at https://transifex.com/wekan/wekan only.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
460 B
20 lines
460 B
![]()
7 years ago
|
# Wekan on OpenShift
|
||
![]()
7 years ago
|
|
||
![]()
7 years ago
|
OpenShift Template for Wekan backed by MongoDB
|
||
![]()
7 years ago
|
|
||
|
#### Create Template
|
||
|
```sh
|
||
|
oc create -f wekan.yml
|
||
|
```
|
||
|
|
||
|
#### Delete Instance Resources
|
||
|
Clean up all resources created. Note label filters assume single instance of template deployed in the current namespace.
|
||
|
|
||
|
```sh
|
||
|
oc delete all -l app=wekan
|
||
|
oc delete pods -l app=wekan
|
||
|
oc delete persistentvolumeclaim -l app=wekan
|
||
|
oc delete serviceaccount -l app=wekan
|
||
|
oc delete secret -l app=wekan
|
||
|
```
|