Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-09-24 11:18:26 +00:00
parent dd17d4ad2e
commit ee8b3ed924
47 changed files with 2239 additions and 26 deletions

View File

@ -0,0 +1,8 @@
**Important:**
*for the complete changelog, please refer to the website*
## [vocechat-server-0.0.1]vocechat-server-0.0.1 (2023-09-24)

View File

@ -0,0 +1,28 @@
apiVersion: v2
appVersion: "0.3.38"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 14.0.3
deprecated: false
description: A superlight rust written social server.
home: https://truecharts.org/charts/incubator/vocechat-server
icon: https://truecharts.org/img/hotlink-ok/chart-icons/vocechat-server.png
keywords:
- vocechat-server
- social
kubeVersion: ">=1.16.0-0"
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: https://truecharts.org
name: vocechat-server
sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/vocechat-server
- https://github.com/Privoce/vocechat-server-rust
type: application
version: 0.0.1
annotations:
truecharts.org/catagories: |
- social
truecharts.org/SCALE-support: "true"

View File

@ -0,0 +1 @@
# README

View File

@ -0,0 +1,4 @@
## [vocechat-server-0.0.1]vocechat-server-0.0.1 (2023-09-24)

View File

@ -0,0 +1,8 @@
A superlight rust written social server.
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/incubator/vocechat-server](https://truecharts.org/charts/incubator/vocechat-server)
---
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!

View File

@ -0,0 +1,34 @@
image:
repository: tccr.io/truecharts/vocechat-server
pullPolicy: IfNotPresent
tag: v0.3.38@sha256:a2af75f54ed922a0803f14d0839a25d51d5bc0f6127e972bcf5ee798efcfa5b8
service:
main:
ports:
main:
protocol: http
port: 3009
vocechat:
frontend_url: localhost:3009
workload:
main:
podSpec:
containers:
main:
args:
- --network.bind
- 0.0.0.0:{{ .Values.service.main.ports.main.port }}
- --network.frontend_url
- "{{ .Values.vocechat.frontend_url }}"
persistence:
data:
enabled: true
mountPath: "/home/vocechat-server/data"
portal:
open:
enabled: true

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,5 @@
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/vocechat-server.png
categories:
- social
screenshots: []

View File

@ -1,9 +0,0 @@
## [immich-8.0.16](https://github.com/truecharts/charts/compare/immich-8.0.15...immich-8.0.16) (2023-09-22)
### Chore
- update immich to v1.79.1 (patch) ([#12827](https://github.com/truecharts/charts/issues/12827))

View File

@ -4,6 +4,11 @@
## [immich-8.1.16](https://github.com/truecharts/charts/compare/immich-8.0.16...immich-8.1.16) (2023-09-24)
## [immich-8.0.16](https://github.com/truecharts/charts/compare/immich-8.0.15...immich-8.0.16) (2023-09-22)
### Chore
@ -92,8 +97,3 @@
- update container image tccr.io/truecharts/immich-server to v1.75.2 ([#12076](https://github.com/truecharts/charts/issues/12076))
## [immich-8.0.6](https://github.com/truecharts/charts/compare/immich-8.0.5...immich-8.0.6) (2023-08-31)
### Chore

View File

@ -22,7 +22,7 @@ name: immich
sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/immich
- https://github.com/immich-app/immich
version: 8.0.16
version: 8.1.16
annotations:
truecharts.org/catagories: |
- media

View File

@ -0,0 +1,4 @@
## [immich-8.1.16](https://github.com/truecharts/charts/compare/immich-8.0.16...immich-8.1.16) (2023-09-24)

View File

@ -168,6 +168,15 @@ persistence:
main: {}
microservices:
microservices: {}
externallibrary:
enabled: true
mountPath: /media
targetSelector:
# Main pod/container is server
main:
main: {}
microservices:
microservices: {}
cnpg:
main:

View File

@ -1071,6 +1071,107 @@ questions:
show_if: [["type", "=", "pvc"]]
type: string
default: 256Gi
- variable: externallibrary
label: App External Library Storage
description: Stores the External Library.
schema:
additional_attrs: true
type: dict
attrs:
- variable: type
label: Type of Storage
description: Sets the persistence type, Anything other than PVC could break rollback!
schema:
type: string
default: pvc
enum:
- value: pvc
description: PVC
- value: hostPath
description: Host Path
- value: emptyDir
description: emptyDir
- value: nfs
description: NFS Share
- variable: server
label: NFS Server
schema:
show_if: [["type", "=", "nfs"]]
type: string
default: ""
- variable: path
label: Path on NFS Server
schema:
show_if: [["type", "=", "nfs"]]
type: string
default: ""
- variable: autoPermissions
label: Automatic Permissions Configuration
description: Automatically set permissions
schema:
show_if: [["type", "!=", "pvc"]]
type: dict
additional_attrs: true
attrs:
- variable: enabled
label: enabled
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: chown
label: Run CHOWN
description: |
It will run CHOWN on the path with the given fsGroup
schema:
type: boolean
default: false
- variable: chmod
label: Run CHMOD
description: |
It will run CHMOD on the path with the given value</br>
Format should be 3 digits, e.g. 770
schema:
type: string
valid_chars: '[0-9]{3}'
default: ""
- variable: recursive
label: Recursive
description: |
It will run CHOWN and CHMOD recursively
schema:
type: boolean
default: false
- variable: readOnly
label: Read Only
schema:
type: boolean
default: false
- variable: hostPath
label: Host Path
description: Path inside the container the storage is mounted
schema:
show_if: [["type", "=", "hostPath"]]
type: hostpath
- variable: medium
label: EmptyDir Medium
schema:
show_if: [["type", "=", "emptyDir"]]
type: string
default: ""
enum:
- value: ""
description: Default
- value: Memory
description: Memory
- variable: size
label: Size quotum of Storage (Do NOT REDUCE after installation)
description: This value can ONLY be INCREASED after the installation
schema:
show_if: [["type", "=", "pvc"]]
type: string
default: 256Gi
- variable: persistenceList
label: Additional App Storage
group: Storage and Persistence

View File

@ -1,4 +0,0 @@
## [projectsend-8.0.8](https://github.com/truecharts/charts/compare/projectsend-8.0.7...projectsend-8.0.8) (2023-09-22)

View File

@ -4,6 +4,11 @@
## [projectsend-8.0.9](https://github.com/truecharts/charts/compare/projectsend-8.0.8...projectsend-8.0.9) (2023-09-24)
## [projectsend-8.0.8](https://github.com/truecharts/charts/compare/projectsend-8.0.7...projectsend-8.0.8) (2023-09-22)
@ -92,8 +97,3 @@
### Chore
- update container image tccr.io/truecharts/projectsend to vlatest ([#10812](https://github.com/truecharts/charts/issues/10812))
## [projectsend-7.1.2](https://github.com/truecharts/charts/compare/projectsend-7.1.1...projectsend-7.1.2) (2023-07-18)

View File

@ -25,7 +25,7 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/projectsend
- https://github.com/projectsend/projectsend
type: application
version: 8.0.8
version: 8.0.9
annotations:
truecharts.org/catagories: |
- files

View File

@ -0,0 +1,4 @@
## [projectsend-8.0.9](https://github.com/truecharts/charts/compare/projectsend-8.0.8...projectsend-8.0.9) (2023-09-24)

View File

@ -43,7 +43,7 @@ workload:
- -c
args:
- |-
export configFile="/config/projectsend/includes/sys.config.php";
export configFile="/app/www/public/includes/sys.config.php";
if [ ! -f $configFile ];
then
echo "Creating initial config file...";

View File

@ -0,0 +1 @@
{{- include "tc.v1.common.lib.chart.notes" $ -}}

View File

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

View File