Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot
2023-07-17 13:50:39 +00:00
parent 30347d72d8
commit b353ea72fa
14 changed files with 22 additions and 117 deletions

View File

@@ -1,9 +0,0 @@
## [seafile-0.0.3](https://github.com/truecharts/charts/compare/seafile-0.0.2...seafile-0.0.3) (2023-07-16)
### Fix
- remove extra privs and memcached ([#10523](https://github.com/truecharts/charts/issues/10523))

View File

@@ -4,6 +4,15 @@
## [seafile-0.0.4](https://github.com/truecharts/charts/compare/seafile-0.0.3...seafile-0.0.4) (2023-07-17)
### Fix
- Change mounting option ([#10524](https://github.com/truecharts/charts/issues/10524))
## [seafile-0.0.3](https://github.com/truecharts/charts/compare/seafile-0.0.2...seafile-0.0.3) (2023-07-16)
### Fix

View File

@@ -26,7 +26,7 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/seafile
- https://seafile.com
type: application
version: 0.0.3
version: 0.0.4
annotations:
truecharts.org/catagories: |
- file-storage

View File

@@ -0,0 +1,9 @@
## [seafile-0.0.4](https://github.com/truecharts/charts/compare/seafile-0.0.3...seafile-0.0.4) (2023-07-17)
### Fix
- Change mounting option ([#10524](https://github.com/truecharts/charts/issues/10524))

View File

@@ -41,12 +41,9 @@ workload:
FORCE_HTTPS_IN_CONF: false
persistence:
config:
enabled: true
mountPath: "/shared/seafile"
storage:
enabled: true
mountPath: "/shared/seafile/storage"
mountPath: "/shared/seafile"
mariadb:
enabled: true

View File

@@ -544,110 +544,9 @@ questions:
additional_attrs: true
type: dict
attrs:
- variable: config
label: "App Config Storage"
description: "Stores the Application Configuration."
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: storage
label: "App File Block Storage"
description: "Stores the File Block Storage (Not user readable unless FUSE enabled)"
label: "App Storage"
description: "Stores the Application files"
schema:
additional_attrs: true
type: dict