Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
2cd5373836
commit
362911a550
|
@ -1,9 +0,0 @@
|
|||
|
||||
|
||||
## [webtop-6.0.179](https://github.com/truecharts/charts/compare/webtop-6.0.178...webtop-6.0.179) (2023-11-12)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/webtop-arch-i3 to latest ([#14596](https://github.com/truecharts/charts/issues/14596))
|
||||
|
||||
|
|
@ -4,6 +4,15 @@
|
|||
|
||||
|
||||
|
||||
## [webtop-6.0.180](https://github.com/truecharts/charts/compare/webtop-6.0.179...webtop-6.0.180) (2023-11-14)
|
||||
|
||||
### Chore
|
||||
|
||||
- update webtop ([#14635](https://github.com/truecharts/charts/issues/14635))
|
||||
|
||||
|
||||
|
||||
|
||||
## [webtop-6.0.179](https://github.com/truecharts/charts/compare/webtop-6.0.178...webtop-6.0.179) (2023-11-12)
|
||||
|
||||
### Chore
|
||||
|
@ -88,12 +97,3 @@
|
|||
## [webtop-6.0.170](https://github.com/truecharts/charts/compare/webtop-6.0.169...webtop-6.0.170) (2023-11-08)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major ([#14454](https://github.com/truecharts/charts/issues/14454))
|
||||
|
||||
|
||||
|
||||
|
||||
## [webtop-6.0.169](https://github.com/truecharts/charts/compare/webtop-6.0.168...webtop-6.0.169) (2023-11-07)
|
||||
|
||||
### Chore
|
|
@ -23,7 +23,7 @@ sources:
|
|||
- https://github.com/orgs/linuxserver/packages/container/package/webtop
|
||||
- https://github.com/linuxserver/docker-webtop#readme
|
||||
type: application
|
||||
version: 6.0.179
|
||||
version: 6.0.180
|
||||
annotations:
|
||||
truecharts.org/category: Tools-Utilities
|
||||
truecharts.org/SCALE-support: "true"
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
|
||||
## [webtop-6.0.180](https://github.com/truecharts/charts/compare/webtop-6.0.179...webtop-6.0.180) (2023-11-14)
|
||||
|
||||
### Chore
|
||||
|
||||
- update webtop ([#14635](https://github.com/truecharts/charts/issues/14635))
|
||||
|
||||
|
|
@ -48,7 +48,7 @@ archMATEImage:
|
|||
pullPolicy: Always
|
||||
alpineI3Image:
|
||||
repository: tccr.io/truecharts/webtop-alpine-i3
|
||||
tag: latest@sha256:c3b367e2491824cd99b21b3ffd1f0b78e83155d5fc2ef3913f5724d37998534b
|
||||
tag: latest@sha256:d17adb373de7c02485f70cd02e4711db6f50ed4f614bd29507ea809b73024105
|
||||
pullPolicy: Always
|
||||
ubuntuI3Image:
|
||||
repository: tccr.io/truecharts/webtop-ubuntu-i3
|
||||
|
@ -80,7 +80,7 @@ archOpenBoxImage:
|
|||
pullPolicy: Always
|
||||
alpineICEWMImage:
|
||||
repository: tccr.io/truecharts/webtop-alpine-icewm
|
||||
tag: latest@sha256:5c6637dcb4648f617d5777aedecd6f49d0199b671f86b08dd75d42403af401f0
|
||||
tag: latest@sha256:6cbc13e48970e1a5563d521881312fd43c915cf41c4a34910c48083c25c191db
|
||||
pullPolicy: Always
|
||||
ubuntuICEWMImage:
|
||||
repository: tccr.io/truecharts/webtop-ubuntu-icewm
|
|
@ -722,6 +722,99 @@ questions:
|
|||
show_if: [["type", "=", "pvc"]]
|
||||
type: string
|
||||
default: 256Gi
|
||||
- variable: storageClass
|
||||
label: 'storageClass (Advanced)'
|
||||
description: 'sets the storageClass to something other than iX default. Only for advanced usecases!'
|
||||
schema:
|
||||
show_if: [["type", "=", "pvc"]]
|
||||
type: string
|
||||
default: ""
|
||||
- variable: static
|
||||
label: 'Static Fixed PVC Bindings (Experimental)'
|
||||
description: Link a PVC to a specific storage location
|
||||
schema:
|
||||
show_if: [["type", "=", "pvc"]]
|
||||
type: dict
|
||||
additional_attrs: true
|
||||
attrs:
|
||||
- variable: mode
|
||||
label: mode
|
||||
description: |
|
||||
disabled: use normal dynamic PVCs
|
||||
smb: connect to an SMB share
|
||||
nfs: connect to an NFS share
|
||||
schema:
|
||||
type: string
|
||||
default: "disabled"
|
||||
enum:
|
||||
- value: "disabled"
|
||||
description: disabled
|
||||
- value: smb
|
||||
description: smb
|
||||
- value: nfs
|
||||
description: nfs
|
||||
- variable: server
|
||||
label: Server
|
||||
description: server to connect to
|
||||
schema:
|
||||
type: string
|
||||
show_if: [["mode", "!=", "disabled"]]
|
||||
default: "myserver"
|
||||
- variable: share
|
||||
label: Share
|
||||
description: share to connect to
|
||||
schema:
|
||||
type: string
|
||||
show_if: [["mode", "!=", "disabled"]]
|
||||
default: "/myshare"
|
||||
- variable: user
|
||||
label: User
|
||||
description: connecting user
|
||||
schema:
|
||||
type: string
|
||||
show_if: [["mode", "=", "smb"]]
|
||||
default: "myuser"
|
||||
- variable: domain
|
||||
label: Domain
|
||||
description: user domain
|
||||
schema:
|
||||
type: string
|
||||
show_if: [["mode", "=", "smb"]]
|
||||
default: ""
|
||||
- variable: password
|
||||
label: Password
|
||||
description: connecting password
|
||||
schema:
|
||||
type: string
|
||||
show_if: [["mode", "=", "smb"]]
|
||||
default: ""
|
||||
- variable: volumeSnapshots
|
||||
label: 'Volume Snapshots (Experimental)'
|
||||
description: Add an entry to the list to force creation of a volumeSnapshot of this PVC
|
||||
schema:
|
||||
show_if: [["type", "=", "pvc"]]
|
||||
type: list
|
||||
default: []
|
||||
items:
|
||||
- variable: volumeSnapshotEntry
|
||||
label: Custom volumeSnapshot
|
||||
schema:
|
||||
additional_attrs: true
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: name
|
||||
label: Name
|
||||
description: 'WARNING: renaming this, means deletion of the snapshot with the old name!'
|
||||
schema:
|
||||
type: string
|
||||
default: "mysnapshot"
|
||||
required: true
|
||||
- variable: volumeSnapshotClassName
|
||||
label: 'volumeSnapshot Class Name (Advanced)'
|
||||
description: For use with PVCs using a non-default storageClass
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: persistenceList
|
||||
label: Additional App Storage
|
||||
group: Storage and Persistence
|
||||
|
@ -842,6 +935,99 @@ questions:
|
|||
show_if: [["type", "=", "pvc"]]
|
||||
type: string
|
||||
default: 256Gi
|
||||
- variable: storageClass
|
||||
label: 'storageClass (Advanced)'
|
||||
description: 'sets the storageClass to something other than iX default. Only for advanced usecases!'
|
||||
schema:
|
||||
show_if: [["type", "=", "pvc"]]
|
||||
type: string
|
||||
default: ""
|
||||
- variable: static
|
||||
label: 'Static Fixed PVC Bindings (Experimental)'
|
||||
description: Link a PVC to a specific storage location
|
||||
schema:
|
||||
show_if: [["type", "=", "pvc"]]
|
||||
type: dict
|
||||
additional_attrs: true
|
||||
attrs:
|
||||
- variable: mode
|
||||
label: mode
|
||||
description: |
|
||||
disabled: use normal dynamic PVCs
|
||||
smb: connect to an SMB share
|
||||
nfs: connect to an NFS share
|
||||
schema:
|
||||
type: string
|
||||
default: "disabled"
|
||||
enum:
|
||||
- value: "disabled"
|
||||
description: disabled
|
||||
- value: smb
|
||||
description: smb
|
||||
- value: nfs
|
||||
description: nfs
|
||||
- variable: server
|
||||
label: Server
|
||||
description: server to connect to
|
||||
schema:
|
||||
type: string
|
||||
show_if: [["mode", "!=", "disabled"]]
|
||||
default: "myserver"
|
||||
- variable: share
|
||||
label: Share
|
||||
description: share to connect to
|
||||
schema:
|
||||
type: string
|
||||
show_if: [["mode", "!=", "disabled"]]
|
||||
default: "/myshare"
|
||||
- variable: user
|
||||
label: User
|
||||
description: connecting user
|
||||
schema:
|
||||
type: string
|
||||
show_if: [["mode", "=", "smb"]]
|
||||
default: "myuser"
|
||||
- variable: domain
|
||||
label: Domain
|
||||
description: user domain
|
||||
schema:
|
||||
type: string
|
||||
show_if: [["mode", "=", "smb"]]
|
||||
default: ""
|
||||
- variable: password
|
||||
label: Password
|
||||
description: connecting password
|
||||
schema:
|
||||
type: string
|
||||
show_if: [["mode", "=", "smb"]]
|
||||
default: ""
|
||||
- variable: volumeSnapshots
|
||||
label: 'Volume Snapshots (Experimental)'
|
||||
description: Add an entry to the list to force creation of a volumeSnapshot of this PVC
|
||||
schema:
|
||||
show_if: [["type", "=", "pvc"]]
|
||||
type: list
|
||||
default: []
|
||||
items:
|
||||
- variable: volumeSnapshotEntry
|
||||
label: Custom volumeSnapshot
|
||||
schema:
|
||||
additional_attrs: true
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: name
|
||||
label: Name
|
||||
description: 'WARNING: renaming this, means deletion of the snapshot with the old name!'
|
||||
schema:
|
||||
type: string
|
||||
default: "mysnapshot"
|
||||
required: true
|
||||
- variable: volumeSnapshotClassName
|
||||
label: 'volumeSnapshot Class Name (Advanced)'
|
||||
description: For use with PVCs using a non-default storageClass
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: ingress
|
||||
label: ""
|
||||
group: Ingress
|
Loading…
Reference in New Issue