Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-07-11 05:36:35 +00:00
parent 095e155f80
commit 65ffb57409
12 changed files with 85 additions and 53 deletions

View File

@ -1,9 +0,0 @@
## [webtop-5.0.75](https://github.com/truecharts/charts/compare/webtop-5.0.74...webtop-5.0.75) (2023-07-06)
### Chore
- update container image tccr.io/truecharts/webtop-ubuntu-xfce to latest ([#10187](https://github.com/truecharts/charts/issues/10187))

View File

@ -4,6 +4,15 @@
## [webtop-5.0.76](https://github.com/truecharts/charts/compare/webtop-5.0.75...webtop-5.0.76) (2023-07-11)
### Chore
- update webtop ([#10384](https://github.com/truecharts/charts/issues/10384))
## [webtop-5.0.75](https://github.com/truecharts/charts/compare/webtop-5.0.74...webtop-5.0.75) (2023-07-06) ## [webtop-5.0.75](https://github.com/truecharts/charts/compare/webtop-5.0.74...webtop-5.0.75) (2023-07-06)
### Chore ### Chore
@ -88,12 +97,3 @@
## [webtop-5.0.62](https://github.com/truecharts/charts/compare/webtop-5.0.61...webtop-5.0.62) (2023-07-01)
### Chore
- update helm general non-major ([#10069](https://github.com/truecharts/charts/issues/10069))

View File

@ -23,7 +23,7 @@ sources:
- https://github.com/orgs/linuxserver/packages/container/package/webtop - https://github.com/orgs/linuxserver/packages/container/package/webtop
- https://github.com/linuxserver/docker-webtop#readme - https://github.com/linuxserver/docker-webtop#readme
type: application type: application
version: 5.0.75 version: 5.0.76
annotations: annotations:
truecharts.org/catagories: | truecharts.org/catagories: |
- Tools-Utilities - Tools-Utilities

View File

@ -0,0 +1,9 @@
## [webtop-5.0.76](https://github.com/truecharts/charts/compare/webtop-5.0.75...webtop-5.0.76) (2023-07-11)
### Chore
- update webtop ([#10384](https://github.com/truecharts/charts/issues/10384))

View File

@ -48,7 +48,7 @@ archMATEImage:
pullPolicy: Always pullPolicy: Always
alpineI3Image: alpineI3Image:
repository: tccr.io/truecharts/webtop-alpine-i3 repository: tccr.io/truecharts/webtop-alpine-i3
tag: latest@sha256:8add761669881b51972be8cfcd0ab6f1d77849ed790f001526bff3f3a04d5a13 tag: latest@sha256:6592a859653954591d49f65a7b7fa2f5fe815c5c44eb2f86fccb77e5229d3d9b
pullPolicy: Always pullPolicy: Always
ubuntuI3Image: ubuntuI3Image:
repository: tccr.io/truecharts/webtop-ubuntu-i3 repository: tccr.io/truecharts/webtop-ubuntu-i3
@ -80,7 +80,7 @@ archOpenBoxImage:
pullPolicy: Always pullPolicy: Always
alpineICEWMImage: alpineICEWMImage:
repository: tccr.io/truecharts/webtop-alpine-icewm repository: tccr.io/truecharts/webtop-alpine-icewm
tag: latest@sha256:cdd0006aeca425b1f8a32b32f78d8b70dd0b11d0eb4f6ca08e51c23d9f0a9f1a tag: latest@sha256:707ed07acae17f12f7b67cb74efc6dc3c4c8dea31b227877e5df314e1adc3ec2
pullPolicy: Always pullPolicy: Always
ubuntuICEWMImage: ubuntuICEWMImage:
repository: tccr.io/truecharts/webtop-ubuntu-icewm repository: tccr.io/truecharts/webtop-ubuntu-icewm

View File

@ -655,14 +655,6 @@ questions:
show_if: [["type", "=", "nfs"]] show_if: [["type", "=", "nfs"]]
type: string type: string
default: "" default: ""
- variable: setPermissions
label: Automatic Permissions
description: Automatically set permissions on install
schema:
show_if: [["type", "=", "hostPath"]]
hidden: true
type: boolean
default: false
- variable: autoPermissions - variable: autoPermissions
label: Automatic Permissions Configuration label: Automatic Permissions Configuration
description: Automatically set permissions description: Automatically set permissions
@ -671,27 +663,36 @@ questions:
type: dict type: dict
additional_attrs: true additional_attrs: true
attrs: attrs:
- variable: chown - variable: enabled
label: Run CHOWN label: enabled
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
schema:
type: string
default: "775"
- variable: recursive
label: Recursive
description: |
It will run CHOWN and CHMOD recursively
schema: schema:
type: boolean type: boolean
default: false 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 - variable: readOnly
label: Read Only label: Read Only
schema: schema:
@ -767,13 +768,44 @@ questions:
show_if: [["type", "=", "nfs"]] show_if: [["type", "=", "nfs"]]
type: string type: string
default: "" default: ""
- variable: setPermissions - variable: autoPermissions
label: Automatic Permissions label: Automatic Permissions Configuration
description: Automatically set permissions on install description: Automatically set permissions
schema: schema:
show_if: [["type", "=", "hostPath"]] show_if: [["type", "!=", "pvc"]]
type: boolean type: dict
default: false 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 - variable: readOnly
label: Read Only label: Read Only
schema: schema: