Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-01-15 11:46:59 +00:00
parent 8546186ba3
commit 6175ba46f4
13 changed files with 2116 additions and 0 deletions

View File

@ -0,0 +1,8 @@
**Important:**
*for the complete changelog, please refer to the website*
## [wbo-3.0.0](https://github.com/truecharts/charts/compare/wbo-2.0.7...wbo-3.0.0) (2023-01-15)

View File

@ -0,0 +1,27 @@
apiVersion: v2
appVersion: "1.19.1"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 11.1.2
description: an online collaborative whiteboard that allows many users to draw simultaneously on a large virtual board.
home: https://truecharts.org/charts/incubator/wbo
icon: https://truecharts.org/img/hotlink-ok/chart-icons/wbo.png
keywords:
- wbo
- whiteboard
kubeVersion: ">=1.16.0-0"
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: https://truecharts.org
name: wbo
sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/wbo
- https://github.com/lovasoa/whitebophir
version: 3.0.0
annotations:
truecharts.org/catagories: |
- productivity
truecharts.org/SCALE-support: "true"
truecharts.org/grade: U

View File

@ -0,0 +1,27 @@
# README
## General Info
TrueCharts can be installed as both *normal* Helm Charts or as Apps on TrueNAS SCALE.
However only installations using the TrueNAS SCALE Apps system are supported.
For more information about this App, please check the docs on the TrueCharts [website](https://truecharts.org/charts/incubator/)
**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/charts/issues/new/choose)**
## Support
- Please check our [quick-start guides for TrueNAS SCALE](https://truecharts.org/manual/SCALE%20Apps/Important-MUST-READ).
- See the [Website](https://truecharts.org)
- Check our [Discord](https://discord.gg/tVsPTHWTtr)
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
---
## Sponsor TrueCharts
TrueCharts can only exist due to the incredible effort of our staff.
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!
*All Rights Reserved - The TrueCharts Project*

View File

@ -0,0 +1,4 @@
## [wbo-3.0.0](https://github.com/truecharts/charts/compare/wbo-2.0.7...wbo-3.0.0) (2023-01-15)

View File

@ -0,0 +1,8 @@
an online collaborative whiteboard that allows many users to draw simultaneously on a large virtual board.
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/stable/wbo](https://truecharts.org/charts/stable/wbo)
---
TrueCharts can only exist due to the incredible effort of our staff.
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!

Binary file not shown.

View File

@ -0,0 +1,42 @@
image:
repository: tccr.io/truecharts/wbo
tag: 1.19.1@sha256:d0c575eb6971f8ff78dc34c197d53ba18403a8527ce5545989ac4c5256ef1f9f
pullPolicy: IfNotPresent
podSecurityContext:
runAsUser: 1000
runAsGroup: 1000
wbo:
auth_secret_key: ""
save_interval: 2000
max_save_delay: 60000
max_item_count: 32768
max_children: 192
max_board_size: 65536
max_emit_count: 192
max_emit_count_period: 4096
auto_finger_whiteout: true
blocked_tools: []
blocked_selection_buttons: []
envFrom:
- secretRef:
name: '{{ include "tc.common.names.fullname" . }}-secret'
- configMapRef:
name: '{{ include "tc.common.names.fullname" . }}-config'
service:
main:
ports:
main:
port: 10354
protocol: HTTP
persistence:
data:
enabled: true
mountPath: /opt/app/server-data
portal:
enabled: true

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,47 @@
{{/* Define the configmap */}}
{{- define "wbo.config" -}}
{{- $configName := printf "%s-config" (include "tc.common.names.fullname" .) }}
---
{{/* This configmap are loaded on both main authentik container and worker */}}
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ $configName }}
labels:
{{- include "tc.common.labels" . | nindent 4 }}
data:
PORT: {{ .Values.service.main.ports.main.port | quote }}
{{- if or .Values.wbo.save_interval (eq (int .Values.wbo.save_interval) 0) }}
SAVE_INTERVAL: {{ .Values.wbo.save_interval | quote }}
{{- end }}
{{- if or .Values.wbo.max_save_delay (eq (int .Values.wbo.max_save_delay) 0) }}
MAX_SAVE_DELAY: {{ .Values.wbo.max_save_delay | quote }}
{{- end }}
{{- if or .Values.wbo.max_item_count (eq (int .Values.wbo.max_item_count) 0) }}
MAX_ITEM_COUNT: {{ .Values.wbo.max_item_count | quote }}
{{- end }}
{{- if or .Values.wbo.max_children (eq (int .Values.wbo.max_children) 0) }}
MAX_CHILDREN: {{ .Values.wbo.max_children | quote }}
{{- end }}
{{- if or .Values.wbo.max_board_size (eq (int .Values.wbo.max_board_size) 0) }}
MAX_BOARD_SIZE: {{ .Values.wbo.max_board_size | quote }}
{{- end }}
{{- if or .Values.wbo.max_emit_count (eq (int .Values.wbo.max_emit_count) 0) }}
MAX_EMIT_COUNT: {{ .Values.wbo.max_emit_count | quote }}
{{- end }}
{{- if or .Values.wbo.max_emit_count_period (eq (int .Values.wbo.max_emit_count_period) 0) }}
MAX_EMIT_COUNT_PERIOD: {{ .Values.wbo.max_emit_count_period | quote }}
{{- end }}
{{- with .Values.wbo.auto_finger_whiteout }}
AUTO_FINGER_WHITEOUT: {{ ternary "enabled" "disabled" . }}
{{- end }}
{{- with .Values.wbo.blocked_tools }}
BLOCKED_TOOLS: {{ join "," . }}
{{- end }}
{{- with .Values.wbo.blocked_selection_buttons }}
BLOCKED_SELECTION_BUTTONS: {{ join "," . }}
{{- end }}
{{- end -}}

View File

@ -0,0 +1,21 @@
{{/* Define the secret */}}
{{- define "wbo.secret" -}}
{{- $secretName := printf "%s-secret" (include "tc.common.names.fullname" .) }}
---
{{/* This secrets are loaded on both main authentik container and worker */}}
apiVersion: v1
kind: Secret
type: Opaque
metadata:
name: {{ $secretName }}
labels:
{{- include "tc.common.labels" . | nindent 4 }}
data:
{{- with .Values.wbo.auth_secret_key }}
AUTH_SECRET_KEY: {{ . | b64enc }}
{{- end }}
{{- end }}

View File

@ -0,0 +1,11 @@
{{/* Make sure all variables are set properly */}}
{{- include "tc.common.loader.init" . }}
{{/* Render secret */}}
{{- include "wbo.secret" . }}
{{/* Render config */}}
{{- include "wbo.config" . }}
{{/* Render the templates */}}
{{ include "tc.common.loader.apply" . }}

View File

4
stable/wbo/item.yaml Normal file
View File

@ -0,0 +1,4 @@
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/wbo.png
categories:
- productivity