Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot
2022-09-26 13:11:31 +00:00
parent 35f63e172c
commit 1be501978a
40 changed files with 75 additions and 621 deletions

View File

@@ -2,6 +2,16 @@
## [archiveteam-warrior-0.0.26](https://github.com/truecharts/charts/compare/archiveteam-warrior-0.0.25...archiveteam-warrior-0.0.26) (2022-09-26)
### Chore
- Auto-update chart README [skip ci]
- remove docker sock from everywhere ([#3910](https://github.com/truecharts/charts/issues/3910))
## [archiveteam-warrior-0.0.25](https://github.com/truecharts/charts/compare/archiveteam-warrior-0.0.24...archiveteam-warrior-0.0.25) (2022-09-25)
### Chore
@@ -87,13 +97,3 @@
- Auto-update chart README [skip ci]
- Auto-update chart README [skip ci]
- Auto-update chart README [skip ci]
- Auto-update chart README [skip ci]
- Auto-update chart README [skip ci]
- Auto-update chart README [skip ci]
- Auto-update chart README [skip ci]
- Auto-update chart README [skip ci]
- Auto-update chart README [skip ci]
- Auto-update chart README [skip ci]
- refactor Services SCALE GUI
- update helm general non-major ([#3767](https://github.com/truecharts/charts/issues/3767))

View File

@@ -3,4 +3,4 @@ dependencies:
repository: https://library-charts.truecharts.org
version: 10.6.1
digest: sha256:bf3e36b0762c5bb98f9bd21769c9b055650f282e4ffd9fb45378aaa81555bc65
generated: "2022-09-25T14:28:41.31743522Z"
generated: "2022-09-26T13:09:40.968023681Z"

View File

@@ -30,4 +30,4 @@ sources:
- https://wiki.archiveteam.org/index.php/ArchiveTeam_Warrior
- https://hub.docker.com/r/archiveteam/warrior-dockerfile/
type: application
version: 0.0.25
version: 0.0.26

View File

@@ -3,10 +3,7 @@ image:
pullPolicy: IfNotPresent
repository: tccr.io/truecharts/archiveteam-warrior
tag: latest@sha256:2040abe53af0995cf5659abeb38e84911484e4897e25fcdda507cb4dcab4025b
persistence:
appdata:
enabled: true
mountPath: /var/run/docker.sock
podSecurityContext:
runAsGroup: 0
runAsUser: 0

View File

@@ -164,19 +164,6 @@ questions:
label: Arg
schema:
type: string
- variable: env
group: "Container Configuration"
label: "Image Environment"
schema:
additional_attrs: true
type: dict
attrs:
- variable: UMASK
label: "UMASK"
description: "Container Variable UMASK"
schema:
type: string
default: ""
- variable: TZ
label: Timezone
group: Container Configuration
@@ -382,7 +369,7 @@ questions:
description: "This port exposes the container port on the service"
schema:
type: int
default: 3389
default: 8001
required: true
- variable: advanced
label: Show Advanced Settings
@@ -423,7 +410,7 @@ questions:
description: "The internal(!) port on the container the Application runs on"
schema:
type: int
default: 3389
default: 8001
- variable: serviceexpert
group: Networking and Services
label: Show Expert Config
@@ -711,368 +698,6 @@ questions:
schema:
type: int
required: true
- variable: persistence
label: Integrated Persistent Storage
description: Integrated Persistent Storage
group: Storage and Persistence
schema:
additional_attrs: true
type: dict
attrs:
- variable: pathvarrundocker-sock
label: "pathvarrundocker-sock Storage"
description: "Docker Socket on the system, if you want to use Docker in the container"
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: simplePVC
enum:
- value: simplePVC
description: PVC (simple)
- value: simpleHP
description: Host Path (simple)
- value: emptyDir
description: emptyDir
- value: pvc
description: PVC
- value: hostPath
description: Host Path
- 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: setPermissionsSimple
label: Automatic Permissions
description: Automatically set permissions on install
schema:
show_if: [["type", "=", "simpleHP"]]
type: boolean
default: false
- variable: setPermissions
label: Automatic Permissions
description: Automatically set permissions on install
schema:
show_if: [["type", "=", "hostPath"]]
type: boolean
default: false
- variable: readOnly
label: Read Only
schema:
type: boolean
default: false
- variable: hostPathSimple
label: Host Path
description: Path inside the container the storage is mounted
schema:
show_if: [["type", "=", "simpleHP"]]
type: hostpath
- 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
schema:
show_if: [["type", "=", "pvc"]]
type: string
default: 999Gi
- variable: hostPathType
label: (Advanced) hostPath Type
schema:
show_if: [["type", "=", "hostPath"]]
type: string
default: ""
enum:
- value: ""
description: Default
- value: DirectoryOrCreate
description: DirectoryOrCreate
- value: Directory
description: Directory
- value: FileOrCreate
description: FileOrCreate
- value: File
description: File
- value: Socket
description: Socket
- value: CharDevice
description: CharDevice
- value: BlockDevice
description: BlockDevice
- variable: storageClass
label: (Advanced) storageClass
description: "Warning: Anything other than SCALE-ZFS or empty will break rollback!"
schema:
show_if: [["type", "=", "pvc"]]
type: string
default: SCALE-ZFS
- variable: accessMode
label: (Advanced) Access Mode
description: Allow or disallow multiple PVC's writhing to the same PV
schema:
show_if: [["type", "=", "pvc"]]
type: string
default: ReadWriteOnce
enum:
- value: ReadWriteOnce
description: ReadWriteOnce
- value: ReadOnlyMany
description: ReadOnlyMany
- value: ReadWriteMany
description: ReadWriteMany
- variable: advanced
label: Show Advanced Options
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: labelsList
label: Labels
schema:
type: list
default: []
items:
- variable: labelItem
label: Label
schema:
additional_attrs: true
type: dict
attrs:
- variable: name
label: Name
schema:
type: string
- variable: value
label: Value
schema:
type: string
- variable: annotationsList
label: Annotations
schema:
type: list
default: []
items:
- variable: annotationItem
label: Label
schema:
additional_attrs: true
type: dict
attrs:
- variable: name
label: Name
schema:
type: string
- variable: value
label: Value
schema:
type: string
- variable: config
label: "config Storage"
description: "abc users home directory"
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: simplePVC
enum:
- value: simplePVC
description: PVC (simple)
- value: simpleHP
description: Host Path (simple)
- value: emptyDir
description: emptyDir
- value: pvc
description: PVC
- value: hostPath
description: Host Path
- 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: setPermissionsSimple
label: Automatic Permissions
description: Automatically set permissions on install
schema:
show_if: [["type", "=", "simpleHP"]]
type: boolean
default: false
- variable: setPermissions
label: Automatic Permissions
description: Automatically set permissions on install
schema:
show_if: [["type", "=", "hostPath"]]
type: boolean
default: false
- variable: readOnly
label: Read Only
schema:
type: boolean
default: false
- variable: hostPathSimple
label: Host Path
description: Path inside the container the storage is mounted
schema:
show_if: [["type", "=", "simpleHP"]]
type: hostpath
- 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
schema:
show_if: [["type", "=", "pvc"]]
type: string
default: 999Gi
- variable: hostPathType
label: (Advanced) hostPath Type
schema:
show_if: [["type", "=", "hostPath"]]
type: string
default: ""
enum:
- value: ""
description: Default
- value: DirectoryOrCreate
description: DirectoryOrCreate
- value: Directory
description: Directory
- value: FileOrCreate
description: FileOrCreate
- value: File
description: File
- value: Socket
description: Socket
- value: CharDevice
description: CharDevice
- value: BlockDevice
description: BlockDevice
- variable: storageClass
label: (Advanced) storageClass
description: "Warning: Anything other than SCALE-ZFS or empty will break rollback!"
schema:
show_if: [["type", "=", "pvc"]]
type: string
default: SCALE-ZFS
- variable: accessMode
label: (Advanced) Access Mode
description: Allow or disallow multiple PVC's writhing to the same PV
schema:
show_if: [["type", "=", "pvc"]]
type: string
default: ReadWriteOnce
enum:
- value: ReadWriteOnce
description: ReadWriteOnce
- value: ReadOnlyMany
description: ReadOnlyMany
- value: ReadWriteMany
description: ReadWriteMany
- variable: advanced
label: Show Advanced Options
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: labelsList
label: Labels
schema:
type: list
default: []
items:
- variable: labelItem
label: Label
schema:
additional_attrs: true
type: dict
attrs:
- variable: name
label: Name
schema:
type: string
- variable: value
label: Value
schema:
type: string
- variable: annotationsList
label: Annotations
schema:
type: list
default: []
items:
- variable: annotationItem
label: Label
schema:
additional_attrs: true
type: dict
attrs:
- variable: name
label: Name
schema:
type: string
- variable: value
label: Value
schema:
type: string
- variable: persistenceList
label: Additional App Storage
group: Storage and Persistence
@@ -2721,7 +2346,7 @@ questions:
default: true
- variable: donateNag
group: Documentation
label: Please consider supporting TrueCharts, see https://truecharts.org/docs/about/sponsor
label: Please consider supporting TrueCharts, see https://truecharts.org/sponsor
description: Please consider supporting TrueCharts, see
<br /><a href="https://truecharts.org/sponsor">https://truecharts.org/sponsor</a>
schema:

View File

@@ -2,6 +2,16 @@
## [rdesktop-0.0.34](https://github.com/truecharts/charts/compare/rdesktop-0.0.32...rdesktop-0.0.34) (2022-09-26)
### Chore
- Auto-update chart README [skip ci]
- remove docker sock from everywhere ([#3910](https://github.com/truecharts/charts/issues/3910))
## [rdesktop-0.0.32](https://github.com/truecharts/charts/compare/rdesktop-0.0.31...rdesktop-0.0.32) (2022-09-25)
### Chore
@@ -87,13 +97,3 @@
- Auto-update chart README [skip ci]
- Auto-update chart README [skip ci]
- refactor Services SCALE GUI
- update docker general non-major ([#3790](https://github.com/truecharts/charts/issues/3790))
- update helm general non-major ([#3767](https://github.com/truecharts/charts/issues/3767))
- split serviceSelector ([#3751](https://github.com/truecharts/charts/issues/3751))
## [rdesktop-0.0.30](https://github.com/truecharts/charts/compare/rdesktop-0.0.28...rdesktop-0.0.30) (2022-09-20)
### Chore

View File

@@ -3,4 +3,4 @@ dependencies:
repository: https://library-charts.truecharts.org
version: 10.6.1
digest: sha256:bf3e36b0762c5bb98f9bd21769c9b055650f282e4ffd9fb45378aaa81555bc65
generated: "2022-09-25T13:52:33.371381674Z"
generated: "2022-09-26T13:09:41.007733163Z"

View File

@@ -27,4 +27,4 @@ sources:
- https://github.com/orgs/linuxserver/packages/container/package/rdesktop
- https://github.com/linuxserver/docker-rdesktop#readme
type: application
version: 0.0.32
version: 0.0.34

View File

@@ -8,9 +8,7 @@ persistence:
config:
enabled: true
mountPath: /config
pathvarrundocker-sock:
enabled: true
mountPath: /var/run/docker.sock
podSecurityContext:
runAsGroup: 0
runAsUser: 0

View File

@@ -164,6 +164,19 @@ questions:
label: Arg
schema:
type: string
- variable: env
group: "Container Configuration"
label: "Image Environment"
schema:
additional_attrs: true
type: dict
attrs:
- variable: UMASK
label: "UMASK"
description: "Container Variable UMASK"
schema:
type: string
default: ""
- variable: TZ
label: Timezone
group: Container Configuration
@@ -369,7 +382,7 @@ questions:
description: "This port exposes the container port on the service"
schema:
type: int
default: 8001
default: 3389
required: true
- variable: advanced
label: Show Advanced Settings
@@ -410,7 +423,7 @@ questions:
description: "The internal(!) port on the container the Application runs on"
schema:
type: int
default: 8001
default: 3389
- variable: serviceexpert
group: Networking and Services
label: Show Expert Config
@@ -706,9 +719,9 @@ questions:
additional_attrs: true
type: dict
attrs:
- variable: appdata
label: "appdata Storage"
description: "Container Path varrundocker.sock"
- variable: config
label: "config Storage"
description: "abc users home directory"
schema:
additional_attrs: true
type: dict
@@ -2531,7 +2544,7 @@ questions:
default: true
- variable: donateNag
group: Documentation
label: Please consider supporting TrueCharts, see https://truecharts.org/docs/about/sponsor
label: Please consider supporting TrueCharts, see https://truecharts.org/sponsor
description: Please consider supporting TrueCharts, see
<br /><a href="https://truecharts.org/sponsor">https://truecharts.org/sponsor</a>
schema:

View File

@@ -2,6 +2,16 @@
## [webtop-0.0.33](https://github.com/truecharts/charts/compare/webtop-0.0.32...webtop-0.0.33) (2022-09-26)
### Chore
- Auto-update chart README [skip ci]
- remove docker sock from everywhere ([#3910](https://github.com/truecharts/charts/issues/3910))
## [webtop-0.0.32](https://github.com/truecharts/charts/compare/webtop-0.0.31...webtop-0.0.32) (2022-09-26)
### Chore
@@ -87,13 +97,3 @@
- refactor Services SCALE GUI
- update docker general non-major ([#3790](https://github.com/truecharts/charts/issues/3790))
- update helm general non-major ([#3767](https://github.com/truecharts/charts/issues/3767))
## [webtop-0.0.30](https://github.com/truecharts/charts/compare/webtop-0.0.28...webtop-0.0.30) (2022-09-20)
### Chore
- Auto-update chart README [skip ci]
- Auto-update chart README [skip ci]

View File

@@ -27,4 +27,4 @@ sources:
- https://github.com/orgs/linuxserver/packages/container/package/webtop
- https://github.com/linuxserver/docker-webtop#readme
type: application
version: 0.0.32
version: 0.0.33

View File

@@ -10,9 +10,7 @@ persistence:
config:
enabled: true
mountPath: /config
pathvarrundocker-sock:
enabled: true
mountPath: /var/run/docker.sock
podSecurityContext:
runAsGroup: 0
runAsUser: 0

View File

@@ -908,183 +908,6 @@ questions:
label: Value
schema:
type: string
- variable: pathvarrundocker-sock
label: "pathvarrundocker-sock Storage"
description: "Docker Socket on the system, if you want to use Docker in the container"
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: simplePVC
enum:
- value: simplePVC
description: PVC (simple)
- value: simpleHP
description: Host Path (simple)
- value: emptyDir
description: emptyDir
- value: pvc
description: PVC
- value: hostPath
description: Host Path
- 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: setPermissionsSimple
label: Automatic Permissions
description: Automatically set permissions on install
schema:
show_if: [["type", "=", "simpleHP"]]
type: boolean
default: false
- variable: setPermissions
label: Automatic Permissions
description: Automatically set permissions on install
schema:
show_if: [["type", "=", "hostPath"]]
type: boolean
default: false
- variable: readOnly
label: Read Only
schema:
type: boolean
default: false
- variable: hostPathSimple
label: Host Path
description: Path inside the container the storage is mounted
schema:
show_if: [["type", "=", "simpleHP"]]
type: hostpath
- 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
schema:
show_if: [["type", "=", "pvc"]]
type: string
default: 999Gi
- variable: hostPathType
label: (Advanced) hostPath Type
schema:
show_if: [["type", "=", "hostPath"]]
type: string
default: ""
enum:
- value: ""
description: Default
- value: DirectoryOrCreate
description: DirectoryOrCreate
- value: Directory
description: Directory
- value: FileOrCreate
description: FileOrCreate
- value: File
description: File
- value: Socket
description: Socket
- value: CharDevice
description: CharDevice
- value: BlockDevice
description: BlockDevice
- variable: storageClass
label: (Advanced) storageClass
description: "Warning: Anything other than SCALE-ZFS or empty will break rollback!"
schema:
show_if: [["type", "=", "pvc"]]
type: string
default: SCALE-ZFS
- variable: accessMode
label: (Advanced) Access Mode
description: Allow or disallow multiple PVC's writhing to the same PV
schema:
show_if: [["type", "=", "pvc"]]
type: string
default: ReadWriteOnce
enum:
- value: ReadWriteOnce
description: ReadWriteOnce
- value: ReadOnlyMany
description: ReadOnlyMany
- value: ReadWriteMany
description: ReadWriteMany
- variable: advanced
label: Show Advanced Options
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: labelsList
label: Labels
schema:
type: list
default: []
items:
- variable: labelItem
label: Label
schema:
additional_attrs: true
type: dict
attrs:
- variable: name
label: Name
schema:
type: string
- variable: value
label: Value
schema:
type: string
- variable: annotationsList
label: Annotations
schema:
type: list
default: []
items:
- variable: annotationItem
label: Label
schema:
additional_attrs: true
type: dict
attrs:
- variable: name
label: Name
schema:
type: string
- variable: value
label: Value
schema:
type: string
- variable: persistenceList
label: Additional App Storage
group: Storage and Persistence

View File

@@ -2,6 +2,19 @@
## [mosquitto-6.1.1](https://github.com/truecharts/charts/compare/mosquitto-6.1.0...mosquitto-6.1.1) (2022-09-26)
### Chore
- Auto-update chart README [skip ci]
### Fix
- use targetPort in mosquitto.conf ([#3911](https://github.com/truecharts/charts/issues/3911))
## [mosquitto-6.1.0](https://github.com/truecharts/charts/compare/mosquitto-6.0.38...mosquitto-6.1.0) (2022-09-26)
### Chore
@@ -84,16 +97,3 @@
- Auto-update chart README [skip ci]
- Auto-update chart README [skip ci]
- Auto-update chart README [skip ci]
- Auto-update chart README [skip ci]
- Auto-update chart README [skip ci]
- Auto-update chart README [skip ci]
- refactor Services SCALE GUI
- update helm general non-major ([#3767](https://github.com/truecharts/charts/issues/3767))
- split serviceSelector ([#3751](https://github.com/truecharts/charts/issues/3751))
## [mosquitto-6.0.37](https://github.com/truecharts/charts/compare/mosquitto-6.0.36...mosquitto-6.0.37) (2022-09-20)
### Chore

View File

@@ -22,7 +22,7 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/mosquitto
- https://github.com/eclipse/mosquitto
type: application
version: 6.1.0
version: 6.1.1
annotations:
truecharts.org/catagories: |
- homeautomation

View File

@@ -30,7 +30,7 @@ configmap:
enabled: true
data:
mosquitto.conf: |
listener {{ .Values.service.main.ports.main.port }}
listener {{ .Values.service.main.ports.main.targetPort }}
{{- if .Values.websockets.enabled }}
listener {{ .Values.service.websockets.ports.websockets.targetPort }}
protocol websockets