Commit new App releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2022-03-28 21:43:26 +00:00
parent c60710d369
commit 414bf3aeb0
15 changed files with 4416 additions and 0 deletions

View File

@ -0,0 +1,10 @@
# Changelog<br>
<a name="wekan-0.0.1"></a>
### wekan-0.0.1 (2022-03-28)
#### Feat
* add wekan ([#2328](https://github.com/truecharts/apps/issues/2328))

View File

@ -0,0 +1,7 @@
# Configuration Options
##### Connecting to other apps
If you need to connect this App to other Apps on TrueNAS SCALE, please refer to our [Linking Apps Internally](https://truecharts.org/manual/Quick-Start%20Guides/06-linking-apps/) quick-start guide.
##### Available config options
In the future this page is going to contain an automated list of options available in the installation/edit UI.

View File

@ -0,0 +1,9 @@
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 9.2.3
- name: mongodb
repository: https://truecharts.org/
version: 0.0.3
digest: sha256:f9fb295014349c2a1076e2f3371ff9f1c5a441f0a60bd8653e05c09b3ccbb427
generated: "2022-03-28T21:38:26.679891054Z"

View File

@ -0,0 +1,31 @@
apiVersion: v2
appVersion: "6.11"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 9.2.3
- condition: mongodb.enabled
name: mongodb
repository: https://truecharts.org/
version: 0.0.3
description: WeKan - Open Source kanban
home: https://github.com/truecharts/apps/tree/master/charts/stable/wekan
icon: https://truecharts.org/_static/img/appicons/wekan.png
keywords:
- wekan
- kanban
kubeVersion: '>=1.16.0-0'
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: https://truecharts.org
name: wekan
sources:
- https://github.com/wekan/wekan
- https://wekan.github.io/
version: 0.0.1
annotations:
truecharts.org/catagories: |
- productivity
truecharts.org/SCALE-support: "true"
truecharts.org/grade: U

View File

@ -0,0 +1,39 @@
# Introduction
WeKan - Open Source kanban
TrueCharts are designed to be installed as TrueNAS SCALE app only. We can not guarantee this charts works as a stand-alone helm installation.
**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/apps/issues/new/choose)**
## Source Code
* <https://github.com/wekan/wekan>
* <https://wekan.github.io/>
## Requirements
Kubernetes: `>=1.16.0-0`
## Dependencies
| Repository | Name | Version |
|------------|------|---------|
| https://library-charts.truecharts.org | common | 9.2.3 |
| https://truecharts.org/ | mongodb | 0.0.3 |
## Installing the Chart
To install this App on TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/02-Installing-an-App/).
## Upgrading, Rolling Back and Uninstalling the Chart
To upgrade, rollback or delete this App from TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/04-Upgrade-rollback-delete-an-App/).
## Support
- Please check our [quick-start guides](https://truecharts.org/manual/Quick-Start%20Guides/01-Adding-TrueCharts/) first.
- See the [Wiki](https://truecharts.org)
- Check our [Discord](https://discord.gg/tVsPTHWTtr)
- Open a [issue](https://github.com/truecharts/apps/issues/new/choose)
---
All Rights Reserved - The TrueCharts Project

View File

@ -0,0 +1,3 @@
WeKan - Open Source kanban
This App is supplied by TrueCharts, for more information please visit https://truecharts.org

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,30 @@
# Default Helm-Values
TrueCharts is primarily build to supply TrueNAS SCALE Apps.
However, we also supply all Apps as standard Helm-Charts. In this document we aim to document the default values in our values.yaml file.
Most of our Apps also consume our "common" Helm Chart.
If this is the case, this means that all values.yaml values are set to the common chart values.yaml by default. This values.yaml file will only contain values that deviate from the common chart.
You will, however, be able to use all values referenced in the common chart here, besides the values listed in this document.
## Values
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| env.ROOT_URL | string | `"http://localhost"` | |
| env.WRITABLE_PATH | string | `"/data"` | |
| envValueFrom.MONGO_URL.secretKeyRef.key | string | `"url"` | |
| envValueFrom.MONGO_URL.secretKeyRef.name | string | `"mongodbcreds"` | |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"tccr.io/truecharts/wekan"` | |
| image.tag | string | `"v6.11@sha256:4d36ca29c2bf2775903d94e72b5ed55dc2893331ecced6a7ffd01164633e8df4"` | |
| mongodb.enabled | bool | `true` | |
| mongodb.existingSecret | string | `"mongodbcreds"` | |
| mongodb.mongodbDatabase | string | `"wekan"` | |
| mongodb.mongodbUsername | string | `"wekan"` | |
| persistence.data.enabled | bool | `true` | |
| persistence.data.mountPath | string | `"/data"` | |
| service.main.ports.main.port | int | `10204` | |
| service.main.ports.main.targetPort | int | `8080` | |
All Rights Reserved - The TrueCharts Project

View File

@ -0,0 +1,41 @@
image:
repository: tccr.io/truecharts/wekan
tag: v6.11@sha256:4d36ca29c2bf2775903d94e72b5ed55dc2893331ecced6a7ffd01164633e8df4
pullPolicy: IfNotPresent
# securityContext:
# readOnlyRootFilesystem: false
# runAsNonRoot: false
# podSecurityContext:
# runAsUser: 0
# runAsGroup: 0
env:
WRITABLE_PATH: "/data"
# User Defined
ROOT_URL: "http://localhost"
envValueFrom:
MONGO_URL:
secretKeyRef:
name: mongodbcreds
key: url
service:
main:
ports:
main:
port: 10204
targetPort: 8080
mongodb:
enabled: true
mongodbUsername: wekan
mongodbDatabase: wekan
existingSecret: "mongodbcreds"
persistence:
data:
enabled: true
mountPath: "/data"

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{{ include "common.all" . }}

View File

View File

@ -0,0 +1,4 @@
icon_url: https://truecharts.org/_static/img/appicons/wekan.png
categories:
- productivity