Commit new App releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
ec36ef80ae
commit
2ed2e148ae
|
@ -1,8 +0,0 @@
|
|||
|
||||
<a name="sogo-4.0.10"></a>
|
||||
### [sogo-4.0.10](https://github.com/truecharts/apps/compare/sogo-4.0.9...sogo-4.0.10) (2021-09-29)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update helm chart common to v8.0.13 ([#1060](https://github.com/truecharts/apps/issues/1060))
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
|
||||
<a name="sogo-4.0.11"></a>
|
||||
### [sogo-4.0.11](https://github.com/truecharts/apps/compare/sogo-4.0.10...sogo-4.0.11) (2021-10-05)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update non-major ([#1098](https://github.com/truecharts/apps/issues/1098))
|
||||
|
|
@ -9,4 +9,4 @@ dependencies:
|
|||
repository: https://charts.bitnami.com/bitnami
|
||||
version: 5.15.3
|
||||
digest: sha256:31ea20ec333f850afa9cf3a2496456944683769564b80fd997d8321ca3f56830
|
||||
generated: "2021-09-29T16:05:00.010027846Z"
|
||||
generated: "2021-10-05T11:27:11.340778816Z"
|
|
@ -27,4 +27,4 @@ name: sogo
|
|||
sources:
|
||||
- https://www.sogo.nu/
|
||||
type: application
|
||||
version: 4.0.10
|
||||
version: 4.0.11
|
|
@ -23,7 +23,7 @@ You will, however, be able to use all values referenced in the common chart here
|
|||
| postgresql | object | `{"enabled":true,"existingSecret":"dbcreds","postgresqlDatabase":"sogo","postgresqlUsername":"sogo"}` | postgres dependency settings |
|
||||
| postgresqlImage.pullPolicy | string | `"IfNotPresent"` | |
|
||||
| postgresqlImage.repository | string | `"bitnami/postgresql"` | |
|
||||
| postgresqlImage.tag | string | `"13.4.0@sha256:33c276dffe6140d32f357753993c4088cf945a2d02d4c20d310f5a5e9d6e4a36"` | |
|
||||
| postgresqlImage.tag | string | `"13.4.0@sha256:e7526fc32deec708740784d907bcea2ef6c78bc5ab5265026eff96e70082a54a"` | |
|
||||
| securityContext.readOnlyRootFilesystem | bool | `false` | |
|
||||
| securityContext.runAsNonRoot | bool | `false` | |
|
||||
| service | object | `{"main":{"ports":{"main":{"port":80}}}}` | services |
|
|
@ -11,7 +11,7 @@ image:
|
|||
postgresqlImage:
|
||||
repository: bitnami/postgresql
|
||||
pullPolicy: IfNotPresent
|
||||
tag: 13.4.0@sha256:33c276dffe6140d32f357753993c4088cf945a2d02d4c20d310f5a5e9d6e4a36
|
||||
tag: 13.4.0@sha256:e7526fc32deec708740784d907bcea2ef6c78bc5ab5265026eff96e70082a54a
|
||||
|
||||
initContainers:
|
||||
migrate-db:
|
|
@ -172,6 +172,7 @@ questions:
|
|||
schema:
|
||||
type: string
|
||||
default: "002"
|
||||
|
||||
- variable: envList
|
||||
label: "Image environment"
|
||||
group: "Container Configuration"
|
||||
|
@ -1484,6 +1485,7 @@ questions:
|
|||
type: string
|
||||
required: true
|
||||
default: "Prefix"
|
||||
|
||||
- variable: tls
|
||||
label: "TLS-Settings"
|
||||
schema:
|
||||
|
@ -1513,6 +1515,7 @@ questions:
|
|||
type: int
|
||||
$ref:
|
||||
- "definitions/certificate"
|
||||
|
||||
- variable: entrypoint
|
||||
label: "(Advanced) Traefik Entrypoint"
|
||||
description: "Entrypoint used by Traefik when using Traefik as Ingress Provider"
|
||||
|
@ -1541,6 +1544,12 @@ questions:
|
|||
default: false
|
||||
show_subquestions_if: true
|
||||
subquestions:
|
||||
- variable: enableFixedMiddlewares
|
||||
description: "These middlewares enforce a number of best practices."
|
||||
label: "Enable Default Middlewares"
|
||||
schema:
|
||||
type: boolean
|
||||
default: true
|
||||
- variable: ingressClassName
|
||||
label: "IngressClass Name"
|
||||
schema:
|
||||
|
@ -1826,6 +1835,17 @@ questions:
|
|||
- value: "Always"
|
||||
description: "Always"
|
||||
|
||||
|
||||
# Specify GPU configuration
|
||||
- variable: scaleGPU
|
||||
label: "GPU Configuration"
|
||||
group: "Resources and Devices"
|
||||
schema:
|
||||
type: dict
|
||||
$ref:
|
||||
- "definitions/gpuConfiguration"
|
||||
attrs: []
|
||||
|
||||
- variable: resources
|
||||
group: "Resources and Devices"
|
||||
label: ""
|
||||
|
@ -1842,13 +1862,13 @@ questions:
|
|||
schema:
|
||||
type: string
|
||||
default: "4000m"
|
||||
valid_chars: '^([0-9]+)(\.[0-9]?|m?)$'
|
||||
valid_chars: '^(?!^0(\.0|m|)$)([0-9]+)(\.[0-9]|m?)$'
|
||||
- variable: memory
|
||||
label: "Memory RAM"
|
||||
schema:
|
||||
type: string
|
||||
default: "8Gi"
|
||||
valid_chars: '^([0-9.]+)([EPTGMK]i?|[EPTGMK]?|e[0-9]+)$'
|
||||
valid_chars: '^(?!^0(e[0-9]|[EPTGMK]i?|)$)([0-9]+)(|[EPTGMK]i?|e[0-9]+)$'
|
||||
- variable: requests
|
||||
label: "Advanced Request minimum resources required"
|
||||
schema:
|
||||
|
@ -1859,16 +1879,57 @@ questions:
|
|||
schema:
|
||||
type: string
|
||||
default: "10m"
|
||||
valid_chars: '^([0-9]+)(\.[0-9]?|m?)$'
|
||||
valid_chars: '^(?!^0(\.0|m|)$)([0-9]+)(\.[0-9]|m?)$'
|
||||
- variable: memory
|
||||
label: "Memory RAM"
|
||||
schema:
|
||||
type: string
|
||||
default: "50Mi"
|
||||
valid_chars: '^([0-9.]+)([EPTGMK]i?|[EPTGMK]?|e[0-9]+)$'
|
||||
valid_chars: '^(?!^0(e[0-9]|[EPTGMK]i?|)$)([0-9]+)(|[EPTGMK]i?|e[0-9]+)$'
|
||||
|
||||
- variable: deviceList
|
||||
label: "Mount USB devices"
|
||||
group: "Resources and Devices"
|
||||
schema:
|
||||
type: list
|
||||
default: []
|
||||
items:
|
||||
- variable: deviceListEntry
|
||||
label: "Device"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: enabled
|
||||
label: "Enable the storage"
|
||||
schema:
|
||||
type: boolean
|
||||
default: true
|
||||
- variable: type
|
||||
label: "(Advanced) Type of Storage"
|
||||
description: "Sets the persistence type"
|
||||
schema:
|
||||
type: string
|
||||
default: "hostPath"
|
||||
hidden: true
|
||||
- variable: readOnly
|
||||
label: "readOnly"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
- variable: hostPath
|
||||
label: "Host Device Path"
|
||||
description: "Path to the device on the host system"
|
||||
schema:
|
||||
type: path
|
||||
- variable: mountPath
|
||||
label: "Container Device Path"
|
||||
description: "Path inside the container the device is mounted"
|
||||
schema:
|
||||
type: string
|
||||
default: "/dev/ttyACM0"
|
||||
|
||||
- variable: autoscaling
|
||||
group: "Resources and Devices"
|
||||
group: "Advanced"
|
||||
label: "(Advanced) Horizontal Pod Autoscaler"
|
||||
schema:
|
||||
type: dict
|
|
@ -15,7 +15,7 @@ podSecurityContext:
|
|||
postgresqlImage:
|
||||
repository: bitnami/postgresql
|
||||
pullPolicy: IfNotPresent
|
||||
tag: 13.4.0@sha256:33c276dffe6140d32f357753993c4088cf945a2d02d4c20d310f5a5e9d6e4a36
|
||||
tag: 13.4.0@sha256:e7526fc32deec708740784d907bcea2ef6c78bc5ab5265026eff96e70082a54a
|
||||
|
||||
# -- services
|
||||
service:
|
|
@ -1,8 +0,0 @@
|
|||
|
||||
<a name="airsonic-3.0.4"></a>
|
||||
### [airsonic-3.0.4](https://github.com/truecharts/apps/compare/airsonic-3.0.3...airsonic-3.0.4) (2021-09-29)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update helm chart common to v8.0.13 ([#1060](https://github.com/truecharts/apps/issues/1060))
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
|
||||
<a name="airsonic-3.0.5"></a>
|
||||
### [airsonic-3.0.5](https://github.com/truecharts/apps/compare/airsonic-3.0.4...airsonic-3.0.5) (2021-10-05)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update non-major ([#1098](https://github.com/truecharts/apps/issues/1098))
|
||||
|
|
@ -3,4 +3,4 @@ dependencies:
|
|||
repository: https://truecharts.org
|
||||
version: 8.0.13
|
||||
digest: sha256:0a74fa89337aa4fd64c9e6cd0b9935f86dc5b80a9f5f3811cde16eeee14353fe
|
||||
generated: "2021-09-29T16:05:15.742913531Z"
|
||||
generated: "2021-10-05T11:27:33.633000134Z"
|
|
@ -5,7 +5,7 @@ dependencies:
|
|||
repository: https://truecharts.org
|
||||
version: 8.0.13
|
||||
description: Airsonic is a Free and Open Source community driven media server
|
||||
home: https://github.com/truecharts/apps/tree/master/charts/incubator/airsonic
|
||||
home: https://github.com/truecharts/apps/tree/master/charts/stable/airsonic
|
||||
icon: https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/airsonic-logo.png
|
||||
keywords:
|
||||
- airsonic
|
||||
|
@ -19,4 +19,4 @@ sources:
|
|||
- https://github.com/airsonic/airsonic
|
||||
- https://github.com/linuxserver/docker-airsonic
|
||||
- https://github.com/k8s-at-home/charts/tree/master/charts/airsonic
|
||||
version: 3.0.4
|
||||
version: 3.0.5
|
|
@ -14,12 +14,11 @@ You will, however, be able to use all values referenced in the common chart here
|
|||
| env | object | See below | environment variables. See [image docs](https://docs.linuxserver.io/images/docker-airsonic#environment-variables-e) for more details. |
|
||||
| env.CONTEXT_PATH | string | `nil` | Used to set the base path for reverse proxies eg. /booksonic, /books, etc. |
|
||||
| env.JAVA_OPTS | string | `nil` | For passing additional java options. For some reverse proxies, you may need to pass `JAVA_OPTS=-Dserver.use-forward-headers=true` for airsonic to generate the proper URL schemes. |
|
||||
| env.PGID | string | `"1001"` | Specify the group ID the application will run as |
|
||||
| env.PUID | string | `"1001"` | Specify the user ID the application will run as |
|
||||
| env.PUID | int | `568` | Specify the user ID the application will run as |
|
||||
| env.TZ | string | `"UTC"` | Set the container timezone |
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
|
||||
| image.repository | string | `"ghcr.io/linuxserver/airsonic"` | image repository |
|
||||
| image.tag | string | `"version-v10.6.2@sha256:e50f803b3012f39cefe29c8765712e8ec1cef3acfbf30dc0e45ef6f4b71bb402"` | image tag |
|
||||
| image.tag | string | `"version-v10.6.2@sha256:ec2f1c13d8933eb7a8515b1de546e1a1cbd346cfb9753c49bfd9404ac6ba1ad1"` | image tag |
|
||||
| ingress.main | object | See values.yaml | Enable and configure ingress settings for the chart under this key. |
|
||||
| persistence | object | See values.yaml | Configure persistence settings for the chart under this key. |
|
||||
| podSecurityContext.runAsGroup | int | `0` | |
|
|
@ -8,7 +8,7 @@ image:
|
|||
# -- image repository
|
||||
repository: ghcr.io/linuxserver/airsonic
|
||||
# -- image tag
|
||||
tag: version-v10.6.2@sha256:e50f803b3012f39cefe29c8765712e8ec1cef3acfbf30dc0e45ef6f4b71bb402
|
||||
tag: version-v10.6.2@sha256:ec2f1c13d8933eb7a8515b1de546e1a1cbd346cfb9753c49bfd9404ac6ba1ad1
|
||||
# -- image pull policy
|
||||
pullPolicy: IfNotPresent
|
||||
|
|
@ -166,24 +166,20 @@ questions:
|
|||
default: "Etc/UTC"
|
||||
$ref:
|
||||
- "definitions/timezone"
|
||||
- variable: PUID
|
||||
label: "PUID"
|
||||
description: "Sets the PUID env var for LinuxServer.io (compatible) containers"
|
||||
schema:
|
||||
type: int
|
||||
default: 568
|
||||
- variable: PGID
|
||||
label: "PGID"
|
||||
description: "Sets the PGID env var for LinuxServer.io (compatible) containers"
|
||||
schema:
|
||||
type: int
|
||||
default: 568
|
||||
- variable: UMASK
|
||||
label: "UMASK"
|
||||
description: "Sets the UMASK env var for LinuxServer.io (compatible) containers"
|
||||
schema:
|
||||
type: string
|
||||
default: "002"
|
||||
- variable: PUID
|
||||
label: "PUID"
|
||||
description: "Sets the PUID env var for LinuxServer.io (compatible) containers"
|
||||
schema:
|
||||
type: int
|
||||
default: 568
|
||||
|
||||
|
||||
- variable: envList
|
||||
label: "Image environment"
|
||||
group: "Container Configuration"
|
||||
|
@ -888,6 +884,7 @@ questions:
|
|||
type: string
|
||||
required: true
|
||||
default: "Prefix"
|
||||
|
||||
- variable: tls
|
||||
label: "TLS-Settings"
|
||||
schema:
|
||||
|
@ -917,6 +914,7 @@ questions:
|
|||
type: int
|
||||
$ref:
|
||||
- "definitions/certificate"
|
||||
|
||||
- variable: entrypoint
|
||||
label: "(Advanced) Traefik Entrypoint"
|
||||
description: "Entrypoint used by Traefik when using Traefik as Ingress Provider"
|
||||
|
@ -945,6 +943,12 @@ questions:
|
|||
default: false
|
||||
show_subquestions_if: true
|
||||
subquestions:
|
||||
- variable: enableFixedMiddlewares
|
||||
description: "These middlewares enforce a number of best practices."
|
||||
label: "Enable Default Middlewares"
|
||||
schema:
|
||||
type: boolean
|
||||
default: true
|
||||
- variable: ingressClassName
|
||||
label: "IngressClass Name"
|
||||
schema:
|
||||
|
@ -1231,6 +1235,17 @@ questions:
|
|||
- value: "Always"
|
||||
description: "Always"
|
||||
|
||||
|
||||
# Specify GPU configuration
|
||||
- variable: scaleGPU
|
||||
label: "GPU Configuration"
|
||||
group: "Resources and Devices"
|
||||
schema:
|
||||
type: dict
|
||||
$ref:
|
||||
- "definitions/gpuConfiguration"
|
||||
attrs: []
|
||||
|
||||
- variable: resources
|
||||
group: "Resources and Devices"
|
||||
label: ""
|
||||
|
@ -1247,13 +1262,13 @@ questions:
|
|||
schema:
|
||||
type: string
|
||||
default: "4000m"
|
||||
valid_chars: '^([0-9]+)(\.[0-9]?|m?)$'
|
||||
valid_chars: '^(?!^0(\.0|m|)$)([0-9]+)(\.[0-9]|m?)$'
|
||||
- variable: memory
|
||||
label: "Memory RAM"
|
||||
schema:
|
||||
type: string
|
||||
default: "8Gi"
|
||||
valid_chars: '^([0-9.]+)([EPTGMK]i?|[EPTGMK]?|e[0-9]+)$'
|
||||
valid_chars: '^(?!^0(e[0-9]|[EPTGMK]i?|)$)([0-9]+)(|[EPTGMK]i?|e[0-9]+)$'
|
||||
- variable: requests
|
||||
label: "Advanced Request minimum resources required"
|
||||
schema:
|
||||
|
@ -1264,16 +1279,57 @@ questions:
|
|||
schema:
|
||||
type: string
|
||||
default: "10m"
|
||||
valid_chars: '^([0-9]+)(\.[0-9]?|m?)$'
|
||||
valid_chars: '^(?!^0(\.0|m|)$)([0-9]+)(\.[0-9]|m?)$'
|
||||
- variable: memory
|
||||
label: "Memory RAM"
|
||||
schema:
|
||||
type: string
|
||||
default: "50Mi"
|
||||
valid_chars: '^([0-9.]+)([EPTGMK]i?|[EPTGMK]?|e[0-9]+)$'
|
||||
valid_chars: '^(?!^0(e[0-9]|[EPTGMK]i?|)$)([0-9]+)(|[EPTGMK]i?|e[0-9]+)$'
|
||||
|
||||
- variable: deviceList
|
||||
label: "Mount USB devices"
|
||||
group: "Resources and Devices"
|
||||
schema:
|
||||
type: list
|
||||
default: []
|
||||
items:
|
||||
- variable: deviceListEntry
|
||||
label: "Device"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: enabled
|
||||
label: "Enable the storage"
|
||||
schema:
|
||||
type: boolean
|
||||
default: true
|
||||
- variable: type
|
||||
label: "(Advanced) Type of Storage"
|
||||
description: "Sets the persistence type"
|
||||
schema:
|
||||
type: string
|
||||
default: "hostPath"
|
||||
hidden: true
|
||||
- variable: readOnly
|
||||
label: "readOnly"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
- variable: hostPath
|
||||
label: "Host Device Path"
|
||||
description: "Path to the device on the host system"
|
||||
schema:
|
||||
type: path
|
||||
- variable: mountPath
|
||||
label: "Container Device Path"
|
||||
description: "Path inside the container the device is mounted"
|
||||
schema:
|
||||
type: string
|
||||
default: "/dev/ttyACM0"
|
||||
|
||||
- variable: autoscaling
|
||||
group: "Resources and Devices"
|
||||
group: "Advanced"
|
||||
label: "(Advanced) Horizontal Pod Autoscaler"
|
||||
schema:
|
||||
type: dict
|
|
@ -9,7 +9,7 @@ image:
|
|||
# -- image repository
|
||||
repository: ghcr.io/linuxserver/airsonic
|
||||
# -- image tag
|
||||
tag: version-v10.6.2@sha256:e50f803b3012f39cefe29c8765712e8ec1cef3acfbf30dc0e45ef6f4b71bb402
|
||||
tag: version-v10.6.2@sha256:ec2f1c13d8933eb7a8515b1de546e1a1cbd346cfb9753c49bfd9404ac6ba1ad1
|
||||
# -- image pull policy
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
|
@ -27,9 +27,9 @@ env:
|
|||
# -- Set the container timezone
|
||||
TZ: UTC
|
||||
# -- Specify the user ID the application will run as
|
||||
PUID: "1001"
|
||||
# -- Specify the group ID the application will run as
|
||||
PGID: "1001"
|
||||
PUID: 568
|
||||
|
||||
|
||||
# -- Used to set the base path for reverse proxies eg. /booksonic, /books, etc.
|
||||
CONTEXT_PATH: # "url-base"
|
||||
# -- For passing additional java options. For some reverse proxies, you may need to pass `JAVA_OPTS=-Dserver.use-forward-headers=true` for airsonic to generate the proper URL schemes.
|
|
@ -1,8 +0,0 @@
|
|||
|
||||
<a name="authelia-4.0.10"></a>
|
||||
### [authelia-4.0.10](https://github.com/truecharts/apps/compare/authelia-4.0.9...authelia-4.0.10) (2021-09-29)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update helm chart common to v8.0.13 ([#1060](https://github.com/truecharts/apps/issues/1060))
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
|
||||
<a name="authelia-4.0.11"></a>
|
||||
### [authelia-4.0.11](https://github.com/truecharts/apps/compare/authelia-4.0.10...authelia-4.0.11) (2021-10-05)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update non-major ([#1098](https://github.com/truecharts/apps/issues/1098))
|
||||
|
|
@ -9,4 +9,4 @@ dependencies:
|
|||
repository: https://charts.bitnami.com/bitnami
|
||||
version: 15.4.0
|
||||
digest: sha256:cea033c466dff1a87b40274a7fc809220e6502125dfad0f9b840459b5818c3db
|
||||
generated: "2021-09-29T16:12:43.338388319Z"
|
||||
generated: "2021-10-05T11:27:50.034930782Z"
|
|
@ -38,4 +38,4 @@ sources:
|
|||
- https://github.com/authelia/chartrepo
|
||||
- https://github.com/authelia/authelia
|
||||
type: application
|
||||
version: 4.0.10
|
||||
version: 4.0.11
|
|
@ -110,7 +110,7 @@ You will, however, be able to use all values referenced in the common chart here
|
|||
| postgresql.postgresqlUsername | string | `"authelia"` | |
|
||||
| postgresqlImage.pullPolicy | string | `"IfNotPresent"` | |
|
||||
| postgresqlImage.repository | string | `"bitnami/postgresql"` | |
|
||||
| postgresqlImage.tag | string | `"13.4.0@sha256:33c276dffe6140d32f357753993c4088cf945a2d02d4c20d310f5a5e9d6e4a36"` | |
|
||||
| postgresqlImage.tag | string | `"13.4.0@sha256:e7526fc32deec708740784d907bcea2ef6c78bc5ab5265026eff96e70082a54a"` | |
|
||||
| probes.liveness.path | string | `"/api/health\""` | |
|
||||
| probes.liveness.type | string | `"HTTP"` | |
|
||||
| probes.readiness.path | string | `"/api/health"` | |
|
|
@ -12,7 +12,7 @@ image:
|
|||
postgresqlImage:
|
||||
repository: bitnami/postgresql
|
||||
pullPolicy: IfNotPresent
|
||||
tag: 13.4.0@sha256:33c276dffe6140d32f357753993c4088cf945a2d02d4c20d310f5a5e9d6e4a36
|
||||
tag: 13.4.0@sha256:e7526fc32deec708740784d907bcea2ef6c78bc5ab5265026eff96e70082a54a
|
||||
|
||||
|
||||
enableServiceLinks: false
|
|
@ -172,6 +172,7 @@ questions:
|
|||
schema:
|
||||
type: string
|
||||
default: "002"
|
||||
|
||||
- variable: envList
|
||||
label: "Image environment"
|
||||
group: "Container Configuration"
|
||||
|
@ -1580,6 +1581,7 @@ questions:
|
|||
type: string
|
||||
required: true
|
||||
default: "Prefix"
|
||||
|
||||
- variable: tls
|
||||
label: "TLS-Settings"
|
||||
schema:
|
||||
|
@ -1609,6 +1611,7 @@ questions:
|
|||
type: int
|
||||
$ref:
|
||||
- "definitions/certificate"
|
||||
|
||||
- variable: entrypoint
|
||||
label: "(Advanced) Traefik Entrypoint"
|
||||
description: "Entrypoint used by Traefik when using Traefik as Ingress Provider"
|
||||
|
@ -1637,6 +1640,12 @@ questions:
|
|||
default: false
|
||||
show_subquestions_if: true
|
||||
subquestions:
|
||||
- variable: enableFixedMiddlewares
|
||||
description: "These middlewares enforce a number of best practices."
|
||||
label: "Enable Default Middlewares"
|
||||
schema:
|
||||
type: boolean
|
||||
default: true
|
||||
- variable: ingressClassName
|
||||
label: "IngressClass Name"
|
||||
schema:
|
||||
|
@ -1921,6 +1930,17 @@ questions:
|
|||
- value: "Always"
|
||||
description: "Always"
|
||||
|
||||
|
||||
# Specify GPU configuration
|
||||
- variable: scaleGPU
|
||||
label: "GPU Configuration"
|
||||
group: "Resources and Devices"
|
||||
schema:
|
||||
type: dict
|
||||
$ref:
|
||||
- "definitions/gpuConfiguration"
|
||||
attrs: []
|
||||
|
||||
- variable: resources
|
||||
group: "Resources and Devices"
|
||||
label: ""
|
||||
|
@ -1937,13 +1957,13 @@ questions:
|
|||
schema:
|
||||
type: string
|
||||
default: "4000m"
|
||||
valid_chars: '^([0-9]+)(\.[0-9]?|m?)$'
|
||||
valid_chars: '^(?!^0(\.0|m|)$)([0-9]+)(\.[0-9]|m?)$'
|
||||
- variable: memory
|
||||
label: "Memory RAM"
|
||||
schema:
|
||||
type: string
|
||||
default: "8Gi"
|
||||
valid_chars: '^([0-9.]+)([EPTGMK]i?|[EPTGMK]?|e[0-9]+)$'
|
||||
valid_chars: '^(?!^0(e[0-9]|[EPTGMK]i?|)$)([0-9]+)(|[EPTGMK]i?|e[0-9]+)$'
|
||||
- variable: requests
|
||||
label: "Advanced Request minimum resources required"
|
||||
schema:
|
||||
|
@ -1954,16 +1974,57 @@ questions:
|
|||
schema:
|
||||
type: string
|
||||
default: "10m"
|
||||
valid_chars: '^([0-9]+)(\.[0-9]?|m?)$'
|
||||
valid_chars: '^(?!^0(\.0|m|)$)([0-9]+)(\.[0-9]|m?)$'
|
||||
- variable: memory
|
||||
label: "Memory RAM"
|
||||
schema:
|
||||
type: string
|
||||
default: "50Mi"
|
||||
valid_chars: '^([0-9.]+)([EPTGMK]i?|[EPTGMK]?|e[0-9]+)$'
|
||||
valid_chars: '^(?!^0(e[0-9]|[EPTGMK]i?|)$)([0-9]+)(|[EPTGMK]i?|e[0-9]+)$'
|
||||
|
||||
- variable: deviceList
|
||||
label: "Mount USB devices"
|
||||
group: "Resources and Devices"
|
||||
schema:
|
||||
type: list
|
||||
default: []
|
||||
items:
|
||||
- variable: deviceListEntry
|
||||
label: "Device"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: enabled
|
||||
label: "Enable the storage"
|
||||
schema:
|
||||
type: boolean
|
||||
default: true
|
||||
- variable: type
|
||||
label: "(Advanced) Type of Storage"
|
||||
description: "Sets the persistence type"
|
||||
schema:
|
||||
type: string
|
||||
default: "hostPath"
|
||||
hidden: true
|
||||
- variable: readOnly
|
||||
label: "readOnly"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
- variable: hostPath
|
||||
label: "Host Device Path"
|
||||
description: "Path to the device on the host system"
|
||||
schema:
|
||||
type: path
|
||||
- variable: mountPath
|
||||
label: "Container Device Path"
|
||||
description: "Path inside the container the device is mounted"
|
||||
schema:
|
||||
type: string
|
||||
default: "/dev/ttyACM0"
|
||||
|
||||
- variable: autoscaling
|
||||
group: "Resources and Devices"
|
||||
group: "Advanced"
|
||||
label: "(Advanced) Horizontal Pod Autoscaler"
|
||||
schema:
|
||||
type: dict
|
|
@ -8,7 +8,7 @@ image:
|
|||
postgresqlImage:
|
||||
repository: bitnami/postgresql
|
||||
pullPolicy: IfNotPresent
|
||||
tag: 13.4.0@sha256:33c276dffe6140d32f357753993c4088cf945a2d02d4c20d310f5a5e9d6e4a36
|
||||
tag: 13.4.0@sha256:e7526fc32deec708740784d907bcea2ef6c78bc5ab5265026eff96e70082a54a
|
||||
|
||||
command: ["authelia"]
|
||||
args: ["--config=/configuration.yaml"]
|
|
@ -1,8 +0,0 @@
|
|||
|
||||
<a name="booksonic-air-3.0.4"></a>
|
||||
### [booksonic-air-3.0.4](https://github.com/truecharts/apps/compare/booksonic-air-3.0.3...booksonic-air-3.0.4) (2021-09-29)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update helm chart common to v8.0.13 ([#1060](https://github.com/truecharts/apps/issues/1060))
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
|
||||
<a name="booksonic-air-3.0.5"></a>
|
||||
### [booksonic-air-3.0.5](https://github.com/truecharts/apps/compare/booksonic-air-3.0.4...booksonic-air-3.0.5) (2021-10-05)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update non-major ([#1098](https://github.com/truecharts/apps/issues/1098))
|
||||
|
|
@ -3,4 +3,4 @@ dependencies:
|
|||
repository: https://truecharts.org
|
||||
version: 8.0.13
|
||||
digest: sha256:0a74fa89337aa4fd64c9e6cd0b9935f86dc5b80a9f5f3811cde16eeee14353fe
|
||||
generated: "2021-09-29T16:06:38.65123938Z"
|
||||
generated: "2021-10-05T11:28:12.076040127Z"
|
|
@ -6,7 +6,7 @@ dependencies:
|
|||
version: 8.0.13
|
||||
description: Booksonic is a platform for accessing the audibooks you own wherever
|
||||
you are
|
||||
home: https://github.com/truechartsapps/tree/master/charts/incubator/booksonic-air
|
||||
home: https://github.com/truechartsapps/tree/master/charts/stable/booksonic-air
|
||||
icon: https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/booksonic-air.png
|
||||
keywords:
|
||||
- booksonic
|
||||
|
@ -20,4 +20,4 @@ name: booksonic-air
|
|||
sources:
|
||||
- https://github.com/popeen/Booksonic-Air
|
||||
- https://hub.docker.com/r/linuxserver/booksonic-air
|
||||
version: 3.0.4
|
||||
version: 3.0.5
|
|
@ -11,12 +11,11 @@ You will, however, be able to use all values referenced in the common chart here
|
|||
|
||||
| Key | Type | Default | Description |
|
||||
|-----|------|---------|-------------|
|
||||
| env.PGID | string | `"568"` | Specify the group ID the application will run as |
|
||||
| env.PUID | string | `"568"` | Specify the user ID the application will run as |
|
||||
| env.PUID | int | `568` | Specify the user ID the application will run as |
|
||||
| env.TZ | string | `"UTC"` | Set the container timezone |
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
|
||||
| image.repository | string | `"ghcr.io/linuxserver/booksonic-air"` | image repository |
|
||||
| image.tag | string | `"version-v2009.1.0@sha256:808cffbd67f61e636f61ed9eb03b52f7e3ff0ead77f1be5016f9518c43f15118"` | image tag |
|
||||
| image.tag | string | `"version-v2009.1.0@sha256:8af3c63dd755ced05cb7d997703491554096fba0afeae59b828e973a1c651c4b"` | image tag |
|
||||
| persistence | object | See values.yaml | Configure persistence settings for the chart under this key. |
|
||||
| podSecurityContext.runAsGroup | int | `0` | |
|
||||
| podSecurityContext.runAsUser | int | `0` | |
|
|
@ -7,7 +7,7 @@
|
|||
image:
|
||||
repository: ghcr.io/linuxserver/booksonic-air
|
||||
pullPolicy: IfNotPresent
|
||||
tag: version-v2009.1.0@sha256:808cffbd67f61e636f61ed9eb03b52f7e3ff0ead77f1be5016f9518c43f15118
|
||||
tag: version-v2009.1.0@sha256:8af3c63dd755ced05cb7d997703491554096fba0afeae59b828e973a1c651c4b
|
||||
|
||||
##
|
||||
# Most other defaults are set in questions.yaml
|
|
@ -165,24 +165,20 @@ questions:
|
|||
default: "Etc/UTC"
|
||||
$ref:
|
||||
- "definitions/timezone"
|
||||
- variable: PUID
|
||||
label: "PUID"
|
||||
description: "Sets the userID inside the container"
|
||||
schema:
|
||||
type: string
|
||||
default: "568"
|
||||
- variable: PGID
|
||||
label: "PGID"
|
||||
description: "Sets the GroupID inside the container"
|
||||
schema:
|
||||
type: string
|
||||
default: "568"
|
||||
- variable: UMASK
|
||||
label: "UMASK"
|
||||
description: "Sets the UMASK env var for LinuxServer.io (compatible) containers"
|
||||
schema:
|
||||
type: string
|
||||
default: "002"
|
||||
- variable: PUID
|
||||
label: "PUID"
|
||||
description: "Sets the userID inside the container"
|
||||
schema:
|
||||
type: string
|
||||
default: "568"
|
||||
|
||||
|
||||
- variable: envList
|
||||
label: "Image environment"
|
||||
group: "Container Configuration"
|
||||
|
@ -885,6 +881,7 @@ questions:
|
|||
type: string
|
||||
required: true
|
||||
default: "Prefix"
|
||||
|
||||
- variable: tls
|
||||
label: "TLS-Settings"
|
||||
schema:
|
||||
|
@ -914,6 +911,7 @@ questions:
|
|||
type: int
|
||||
$ref:
|
||||
- "definitions/certificate"
|
||||
|
||||
- variable: entrypoint
|
||||
label: "(Advanced) Traefik Entrypoint"
|
||||
description: "Entrypoint used by Traefik when using Traefik as Ingress Provider"
|
||||
|
@ -942,6 +940,12 @@ questions:
|
|||
default: false
|
||||
show_subquestions_if: true
|
||||
subquestions:
|
||||
- variable: enableFixedMiddlewares
|
||||
description: "These middlewares enforce a number of best practices."
|
||||
label: "Enable Default Middlewares"
|
||||
schema:
|
||||
type: boolean
|
||||
default: true
|
||||
- variable: ingressClassName
|
||||
label: "IngressClass Name"
|
||||
schema:
|
||||
|
@ -1228,6 +1232,17 @@ questions:
|
|||
- value: "Always"
|
||||
description: "Always"
|
||||
|
||||
|
||||
# Specify GPU configuration
|
||||
- variable: scaleGPU
|
||||
label: "GPU Configuration"
|
||||
group: "Resources and Devices"
|
||||
schema:
|
||||
type: dict
|
||||
$ref:
|
||||
- "definitions/gpuConfiguration"
|
||||
attrs: []
|
||||
|
||||
- variable: resources
|
||||
group: "Resources and Devices"
|
||||
label: ""
|
||||
|
@ -1244,13 +1259,13 @@ questions:
|
|||
schema:
|
||||
type: string
|
||||
default: "4000m"
|
||||
valid_chars: '^([0-9]+)(\.[0-9]?|m?)$'
|
||||
valid_chars: '^(?!^0(\.0|m|)$)([0-9]+)(\.[0-9]|m?)$'
|
||||
- variable: memory
|
||||
label: "Memory RAM"
|
||||
schema:
|
||||
type: string
|
||||
default: "8Gi"
|
||||
valid_chars: '^([0-9.]+)([EPTGMK]i?|[EPTGMK]?|e[0-9]+)$'
|
||||
valid_chars: '^(?!^0(e[0-9]|[EPTGMK]i?|)$)([0-9]+)(|[EPTGMK]i?|e[0-9]+)$'
|
||||
- variable: requests
|
||||
label: "Advanced Request minimum resources required"
|
||||
schema:
|
||||
|
@ -1261,16 +1276,57 @@ questions:
|
|||
schema:
|
||||
type: string
|
||||
default: "10m"
|
||||
valid_chars: '^([0-9]+)(\.[0-9]?|m?)$'
|
||||
valid_chars: '^(?!^0(\.0|m|)$)([0-9]+)(\.[0-9]|m?)$'
|
||||
- variable: memory
|
||||
label: "Memory RAM"
|
||||
schema:
|
||||
type: string
|
||||
default: "50Mi"
|
||||
valid_chars: '^([0-9.]+)([EPTGMK]i?|[EPTGMK]?|e[0-9]+)$'
|
||||
valid_chars: '^(?!^0(e[0-9]|[EPTGMK]i?|)$)([0-9]+)(|[EPTGMK]i?|e[0-9]+)$'
|
||||
|
||||
- variable: deviceList
|
||||
label: "Mount USB devices"
|
||||
group: "Resources and Devices"
|
||||
schema:
|
||||
type: list
|
||||
default: []
|
||||
items:
|
||||
- variable: deviceListEntry
|
||||
label: "Device"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: enabled
|
||||
label: "Enable the storage"
|
||||
schema:
|
||||
type: boolean
|
||||
default: true
|
||||
- variable: type
|
||||
label: "(Advanced) Type of Storage"
|
||||
description: "Sets the persistence type"
|
||||
schema:
|
||||
type: string
|
||||
default: "hostPath"
|
||||
hidden: true
|
||||
- variable: readOnly
|
||||
label: "readOnly"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
- variable: hostPath
|
||||
label: "Host Device Path"
|
||||
description: "Path to the device on the host system"
|
||||
schema:
|
||||
type: path
|
||||
- variable: mountPath
|
||||
label: "Container Device Path"
|
||||
description: "Path inside the container the device is mounted"
|
||||
schema:
|
||||
type: string
|
||||
default: "/dev/ttyACM0"
|
||||
|
||||
- variable: autoscaling
|
||||
group: "Resources and Devices"
|
||||
group: "Advanced"
|
||||
label: "(Advanced) Horizontal Pod Autoscaler"
|
||||
schema:
|
||||
type: dict
|
|
@ -11,7 +11,7 @@ image:
|
|||
# -- image pull policy
|
||||
pullPolicy: IfNotPresent
|
||||
# -- image tag
|
||||
tag: version-v2009.1.0@sha256:808cffbd67f61e636f61ed9eb03b52f7e3ff0ead77f1be5016f9518c43f15118
|
||||
tag: version-v2009.1.0@sha256:8af3c63dd755ced05cb7d997703491554096fba0afeae59b828e973a1c651c4b
|
||||
|
||||
securityContext:
|
||||
readOnlyRootFilesystem: false
|
||||
|
@ -27,9 +27,9 @@ env:
|
|||
# -- Set the container timezone
|
||||
TZ: UTC
|
||||
# -- Specify the user ID the application will run as
|
||||
PUID: "568"
|
||||
# -- Specify the group ID the application will run as
|
||||
PGID: "568"
|
||||
PUID: 568
|
||||
|
||||
|
||||
# -- Used to set the base path for reverse proxies eg. /booksonic, /books, etc.
|
||||
# CONTEXT_PATH=url-base
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
|
||||
<a name="custom-app-2.0.5"></a>
|
||||
### [custom-app-2.0.5](https://github.com/truecharts/apps/compare/custom-app-2.0.4...custom-app-2.0.5) (2021-09-29)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update helm chart common to v8.0.13 ([#1060](https://github.com/truecharts/apps/issues/1060))
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
|
||||
<a name="custom-app-2.0.6"></a>
|
||||
### [custom-app-2.0.6](https://github.com/truecharts/apps/compare/custom-app-2.0.5...custom-app-2.0.6) (2021-10-05)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update non-major ([#1098](https://github.com/truecharts/apps/issues/1098))
|
||||
|
|
@ -3,4 +3,4 @@ dependencies:
|
|||
repository: https://truecharts.org
|
||||
version: 8.0.13
|
||||
digest: sha256:0a74fa89337aa4fd64c9e6cd0b9935f86dc5b80a9f5f3811cde16eeee14353fe
|
||||
generated: "2021-09-29T16:07:06.164137645Z"
|
||||
generated: "2021-10-05T11:28:25.063475414Z"
|
|
@ -1,5 +1,5 @@
|
|||
apiVersion: v2
|
||||
appVersion: "0.18.827"
|
||||
appVersion: "0.18.899"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org
|
||||
|
@ -19,4 +19,4 @@ name: custom-app
|
|||
sources:
|
||||
- https://github.com/truecharts/apps/tree/master/charts/stable/custom-app
|
||||
type: application
|
||||
version: 2.0.5
|
||||
version: 2.0.6
|
|
@ -14,7 +14,7 @@ You will, however, be able to use all values referenced in the common chart here
|
|||
| env | object | `{}` | |
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | |
|
||||
| image.repository | string | `"ghcr.io/k8s-at-home/jackett"` | |
|
||||
| image.tag | string | `"v0.18.827@sha256:32c33362d6ab455f1c608e6558ebcc3796d21d341d178a0559903cef2c6c18a4"` | |
|
||||
| image.tag | string | `"v0.18.899@sha256:717f7178f396557f3684e0b78198758e0197fb4f456ed5ef8a82dd8bbcacfae6"` | |
|
||||
| persistence.config.accessMode | string | `"ReadWriteOnce"` | |
|
||||
| persistence.config.enabled | bool | `true` | |
|
||||
| persistence.config.mountPath | string | `"/config"` | |
|
|
@ -198,6 +198,12 @@ questions:
|
|||
default: "Etc/UTC"
|
||||
$ref:
|
||||
- "definitions/timezone"
|
||||
- variable: UMASK
|
||||
label: "UMASK"
|
||||
description: "Sets the UMASK env var for LinuxServer.io (compatible) containers"
|
||||
schema:
|
||||
type: string
|
||||
default: "002"
|
||||
- variable: envList
|
||||
label: "Image environment"
|
||||
group: "Container Configuration"
|
||||
|
@ -833,6 +839,7 @@ questions:
|
|||
type: string
|
||||
required: true
|
||||
default: "Prefix"
|
||||
|
||||
- variable: tls
|
||||
label: "TLS-Settings"
|
||||
schema:
|
||||
|
@ -862,6 +869,7 @@ questions:
|
|||
type: int
|
||||
$ref:
|
||||
- "definitions/certificate"
|
||||
|
||||
- variable: entrypoint
|
||||
label: "(Advanced) Traefik Entrypoint"
|
||||
description: "Entrypoint used by Traefik when using Traefik as Ingress Provider"
|
||||
|
@ -890,6 +898,12 @@ questions:
|
|||
default: false
|
||||
show_subquestions_if: true
|
||||
subquestions:
|
||||
- variable: enableFixedMiddlewares
|
||||
description: "These middlewares enforce a number of best practices."
|
||||
label: "Enable Default Middlewares"
|
||||
schema:
|
||||
type: boolean
|
||||
default: true
|
||||
- variable: ingressClassName
|
||||
label: "IngressClass Name"
|
||||
schema:
|
||||
|
@ -1175,6 +1189,11 @@ questions:
|
|||
- value: "Always"
|
||||
description: "Always"
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# Specify GPU configuration
|
||||
- variable: scaleGPU
|
||||
label: "GPU Configuration"
|
||||
group: "Resources and Devices"
|
||||
|
@ -1184,8 +1203,49 @@ questions:
|
|||
- "definitions/gpuConfiguration"
|
||||
attrs: []
|
||||
|
||||
- variable: resources
|
||||
group: "Resources and Devices"
|
||||
label: ""
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: limits
|
||||
label: "Advanced Limit Resource Consumption"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: cpu
|
||||
label: "CPU"
|
||||
schema:
|
||||
type: string
|
||||
default: "4000m"
|
||||
valid_chars: '^(?!^0(\.0|m|)$)([0-9]+)(\.[0-9]|m?)$'
|
||||
- variable: memory
|
||||
label: "Memory RAM"
|
||||
schema:
|
||||
type: string
|
||||
default: "8Gi"
|
||||
valid_chars: '^(?!^0(e[0-9]|[EPTGMK]i?|)$)([0-9]+)(|[EPTGMK]i?|e[0-9]+)$'
|
||||
- variable: requests
|
||||
label: "Advanced Request minimum resources required"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: cpu
|
||||
label: "CPU"
|
||||
schema:
|
||||
type: string
|
||||
default: "10m"
|
||||
valid_chars: '^(?!^0(\.0|m|)$)([0-9]+)(\.[0-9]|m?)$'
|
||||
- variable: memory
|
||||
label: "Memory RAM"
|
||||
schema:
|
||||
type: string
|
||||
default: "50Mi"
|
||||
valid_chars: '^(?!^0(e[0-9]|[EPTGMK]i?|)$)([0-9]+)(|[EPTGMK]i?|e[0-9]+)$'
|
||||
|
||||
- variable: deviceList
|
||||
label: "Mount (USB) devices"
|
||||
label: "Mount USB devices"
|
||||
group: "Resources and Devices"
|
||||
schema:
|
||||
type: list
|
||||
|
@ -1225,49 +1285,8 @@ questions:
|
|||
type: string
|
||||
default: "/dev/ttyACM0"
|
||||
|
||||
- variable: resources
|
||||
group: "Resources and Devices"
|
||||
label: ""
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: limits
|
||||
label: "Advanced Limit Resource Consumption"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: cpu
|
||||
label: "CPU"
|
||||
schema:
|
||||
type: string
|
||||
default: "4000m"
|
||||
valid_chars: '^([0-9]+)(\.[0-9]?|m?)$'
|
||||
- variable: memory
|
||||
label: "Memory RAM"
|
||||
schema:
|
||||
type: string
|
||||
default: "8Gi"
|
||||
valid_chars: '^([0-9.]+)([EPTGMK]i?|[EPTGMK]?|e[0-9]+)$'
|
||||
- variable: requests
|
||||
label: "Advanced Request minimum resources required"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: cpu
|
||||
label: "CPU"
|
||||
schema:
|
||||
type: string
|
||||
default: "10m"
|
||||
valid_chars: '^([0-9]+)(\.[0-9]?|m?)$'
|
||||
- variable: memory
|
||||
label: "Memory RAM"
|
||||
schema:
|
||||
type: string
|
||||
default: "50Mi"
|
||||
valid_chars: '^([0-9.]+)([EPTGMK]i?|[EPTGMK]?|e[0-9]+)$'
|
||||
|
||||
- variable: autoscaling
|
||||
group: "Resources and Devices"
|
||||
group: "Advanced"
|
||||
label: "(Advanced) Horizontal Pod Autoscaler"
|
||||
schema:
|
||||
type: dict
|
|
@ -3,7 +3,7 @@
|
|||
image:
|
||||
repository: ghcr.io/k8s-at-home/jackett
|
||||
pullPolicy: IfNotPresent
|
||||
tag: v0.18.827@sha256:32c33362d6ab455f1c608e6558ebcc3796d21d341d178a0559903cef2c6c18a4
|
||||
tag: v0.18.899@sha256:717f7178f396557f3684e0b78198758e0197fb4f456ed5ef8a82dd8bbcacfae6
|
||||
|
||||
securityContext:
|
||||
readOnlyRootFilesystem: false
|
||||
|
@ -30,7 +30,7 @@ serviceList:
|
|||
env: {}
|
||||
# TZ: UTC
|
||||
# PUID: 1001
|
||||
# PGID: 1001
|
||||
|
||||
|
||||
persistence:
|
||||
config:
|
|
@ -1,8 +0,0 @@
|
|||
|
||||
<a name="deluge-8.0.4"></a>
|
||||
### [deluge-8.0.4](https://github.com/truecharts/apps/compare/deluge-8.0.3...deluge-8.0.4) (2021-09-29)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update helm chart common to v8.0.13 ([#1060](https://github.com/truecharts/apps/issues/1060))
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
|
||||
<a name="deluge-8.0.5"></a>
|
||||
### [deluge-8.0.5](https://github.com/truecharts/apps/compare/deluge-8.0.4...deluge-8.0.5) (2021-10-05)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update non-major ([#1098](https://github.com/truecharts/apps/issues/1098))
|
||||
|
|
@ -3,4 +3,4 @@ dependencies:
|
|||
repository: https://truecharts.org
|
||||
version: 8.0.13
|
||||
digest: sha256:0a74fa89337aa4fd64c9e6cd0b9935f86dc5b80a9f5f3811cde16eeee14353fe
|
||||
generated: "2021-09-29T16:06:01.501704224Z"
|
||||
generated: "2021-10-05T11:28:38.308052129Z"
|
|
@ -1,12 +1,12 @@
|
|||
apiVersion: v2
|
||||
appVersion: "2.0.3-2201"
|
||||
appVersion: "2.0.3"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org
|
||||
version: 8.0.13
|
||||
deprecated: false
|
||||
description: Deluge App for TrueNAS SCALE
|
||||
home: https://github.com/truecharts/apps/tree/master/charts/incubator/deluge
|
||||
home: https://github.com/truecharts/apps/tree/master/charts/stable/deluge
|
||||
icon: https://avatars2.githubusercontent.com/u/6733935?v=3&s=200
|
||||
keywords:
|
||||
- transmission
|
||||
|
@ -21,4 +21,4 @@ name: deluge
|
|||
sources:
|
||||
- https://github.com/deluge-torrent/deluge
|
||||
type: application
|
||||
version: 8.0.4
|
||||
version: 8.0.5
|
|
@ -13,7 +13,7 @@ You will, however, be able to use all values referenced in the common chart here
|
|||
|-----|------|---------|-------------|
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | |
|
||||
| image.repository | string | `"ghcr.io/linuxserver/deluge"` | |
|
||||
| image.tag | string | `"version-2.0.3-2201906121747ubuntu18.04.1@sha256:e9c5709346f2746b0b7a893c5c6a31a92617f685d053a0a17246707f80256e3e"` | |
|
||||
| image.tag | string | `"version-2.0.3-2201906121747ubuntu18.04.1@sha256:1d9751eb58fe7d87f5bfb28154b135436a9bad800ccdca86081843437a63f2f9"` | |
|
||||
| persistence.config.accessMode | string | `"ReadWriteOnce"` | |
|
||||
| persistence.config.enabled | bool | `true` | |
|
||||
| persistence.config.mountPath | string | `"/config"` | |
|
|
@ -7,7 +7,7 @@
|
|||
image:
|
||||
repository: ghcr.io/linuxserver/deluge
|
||||
pullPolicy: IfNotPresent
|
||||
tag: version-2.0.3-2201906121747ubuntu18.04.1@sha256:e9c5709346f2746b0b7a893c5c6a31a92617f685d053a0a17246707f80256e3e
|
||||
tag: version-2.0.3-2201906121747ubuntu18.04.1@sha256:1d9751eb58fe7d87f5bfb28154b135436a9bad800ccdca86081843437a63f2f9
|
||||
|
||||
|
||||
##
|
|
@ -172,18 +172,8 @@ questions:
|
|||
schema:
|
||||
type: int
|
||||
default: 568
|
||||
- variable: PGID
|
||||
label: "PGID"
|
||||
description: "Sets the PGID env var for LinuxServer.io (compatible) containers"
|
||||
schema:
|
||||
type: int
|
||||
default: 568
|
||||
- variable: UMASK
|
||||
label: "UMASK"
|
||||
description: "Sets the UMASK env var for LinuxServer.io (compatible) containers"
|
||||
schema:
|
||||
type: string
|
||||
default: "002"
|
||||
|
||||
|
||||
|
||||
- variable: envList
|
||||
label: "Image environment"
|
||||
|
@ -1045,6 +1035,7 @@ questions:
|
|||
type: string
|
||||
required: true
|
||||
default: "Prefix"
|
||||
|
||||
- variable: tls
|
||||
label: "TLS-Settings"
|
||||
schema:
|
||||
|
@ -1074,6 +1065,7 @@ questions:
|
|||
type: int
|
||||
$ref:
|
||||
- "definitions/certificate"
|
||||
|
||||
- variable: entrypoint
|
||||
label: "(Advanced) Traefik Entrypoint"
|
||||
description: "Entrypoint used by Traefik when using Traefik as Ingress Provider"
|
||||
|
@ -1102,6 +1094,12 @@ questions:
|
|||
default: false
|
||||
show_subquestions_if: true
|
||||
subquestions:
|
||||
- variable: enableFixedMiddlewares
|
||||
description: "These middlewares enforce a number of best practices."
|
||||
label: "Enable Default Middlewares"
|
||||
schema:
|
||||
type: boolean
|
||||
default: true
|
||||
- variable: ingressClassName
|
||||
label: "IngressClass Name"
|
||||
schema:
|
||||
|
@ -1387,6 +1385,17 @@ questions:
|
|||
- value: "Always"
|
||||
description: "Always"
|
||||
|
||||
|
||||
# Specify GPU configuration
|
||||
- variable: scaleGPU
|
||||
label: "GPU Configuration"
|
||||
group: "Resources and Devices"
|
||||
schema:
|
||||
type: dict
|
||||
$ref:
|
||||
- "definitions/gpuConfiguration"
|
||||
attrs: []
|
||||
|
||||
- variable: resources
|
||||
group: "Resources and Devices"
|
||||
label: ""
|
||||
|
@ -1403,13 +1412,13 @@ questions:
|
|||
schema:
|
||||
type: string
|
||||
default: "4000m"
|
||||
valid_chars: '^([0-9]+)(\.[0-9]?|m?)$'
|
||||
valid_chars: '^(?!^0(\.0|m|)$)([0-9]+)(\.[0-9]|m?)$'
|
||||
- variable: memory
|
||||
label: "Memory RAM"
|
||||
schema:
|
||||
type: string
|
||||
default: "8Gi"
|
||||
valid_chars: '^([0-9.]+)([EPTGMK]i?|[EPTGMK]?|e[0-9]+)$'
|
||||
valid_chars: '^(?!^0(e[0-9]|[EPTGMK]i?|)$)([0-9]+)(|[EPTGMK]i?|e[0-9]+)$'
|
||||
- variable: requests
|
||||
label: "Advanced Request minimum resources required"
|
||||
schema:
|
||||
|
@ -1420,16 +1429,57 @@ questions:
|
|||
schema:
|
||||
type: string
|
||||
default: "10m"
|
||||
valid_chars: '^([0-9]+)(\.[0-9]?|m?)$'
|
||||
valid_chars: '^(?!^0(\.0|m|)$)([0-9]+)(\.[0-9]|m?)$'
|
||||
- variable: memory
|
||||
label: "Memory RAM"
|
||||
schema:
|
||||
type: string
|
||||
default: "50Mi"
|
||||
valid_chars: '^([0-9.]+)([EPTGMK]i?|[EPTGMK]?|e[0-9]+)$'
|
||||
valid_chars: '^(?!^0(e[0-9]|[EPTGMK]i?|)$)([0-9]+)(|[EPTGMK]i?|e[0-9]+)$'
|
||||
|
||||
- variable: deviceList
|
||||
label: "Mount USB devices"
|
||||
group: "Resources and Devices"
|
||||
schema:
|
||||
type: list
|
||||
default: []
|
||||
items:
|
||||
- variable: deviceListEntry
|
||||
label: "Device"
|
||||
schema:
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: enabled
|
||||
label: "Enable the storage"
|
||||
schema:
|
||||
type: boolean
|
||||
default: true
|
||||
- variable: type
|
||||
label: "(Advanced) Type of Storage"
|
||||
description: "Sets the persistence type"
|
||||
schema:
|
||||
type: string
|
||||
default: "hostPath"
|
||||
hidden: true
|
||||
- variable: readOnly
|
||||
label: "readOnly"
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
- variable: hostPath
|
||||
label: "Host Device Path"
|
||||
description: "Path to the device on the host system"
|
||||
schema:
|
||||
type: path
|
||||
- variable: mountPath
|
||||
label: "Container Device Path"
|
||||
description: "Path inside the container the device is mounted"
|
||||
schema:
|
||||
type: string
|
||||
default: "/dev/ttyACM0"
|
||||
|
||||
- variable: autoscaling
|
||||
group: "Resources and Devices"
|
||||
group: "Advanced"
|
||||
label: "(Advanced) Horizontal Pod Autoscaler"
|
||||
schema:
|
||||
type: dict
|
|
@ -3,7 +3,7 @@
|
|||
image:
|
||||
repository: ghcr.io/linuxserver/deluge
|
||||
pullPolicy: IfNotPresent
|
||||
tag: version-2.0.3-2201906121747ubuntu18.04.1@sha256:e9c5709346f2746b0b7a893c5c6a31a92617f685d053a0a17246707f80256e3e
|
||||
tag: version-2.0.3-2201906121747ubuntu18.04.1@sha256:1d9751eb58fe7d87f5bfb28154b135436a9bad800ccdca86081843437a63f2f9
|
||||
|
||||
securityContext:
|
||||
runAsNonRoot: false
|
|
@ -1,8 +0,0 @@
|
|||
|
||||
<a name="duplicati-3.0.4"></a>
|
||||
### [duplicati-3.0.4](https://github.com/truecharts/apps/compare/duplicati-3.0.3...duplicati-3.0.4) (2021-09-29)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update helm chart common to v8.0.13 ([#1060](https://github.com/truecharts/apps/issues/1060))
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org
|
||||
version: 8.0.13
|
||||
digest: sha256:0a74fa89337aa4fd64c9e6cd0b9935f86dc5b80a9f5f3811cde16eeee14353fe
|
||||
generated: "2021-09-29T16:07:24.731963476Z"
|
|
@ -0,0 +1,8 @@
|
|||
|
||||
<a name="duplicati-3.0.5"></a>
|
||||
### [duplicati-3.0.5](https://github.com/truecharts/apps/compare/duplicati-3.0.4...duplicati-3.0.5) (2021-10-05)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update non-major ([#1098](https://github.com/truecharts/apps/issues/1098))
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
dependencies:
|
||||
- name: common
|
||||
repository: https://truecharts.org
|
||||
version: 8.0.13
|
||||
digest: sha256:0a74fa89337aa4fd64c9e6cd0b9935f86dc5b80a9f5f3811cde16eeee14353fe
|
||||
generated: "2021-10-05T11:28:51.585520602Z"
|
|
@ -5,7 +5,7 @@ dependencies:
|
|||
repository: https://truecharts.org
|
||||
version: 8.0.13
|
||||
description: Store securely encrypted backups on cloud storage services!
|
||||
home: https://github.com/truechartsapps/tree/master/charts/incubator/duplicati
|
||||
home: https://github.com/truechartsapps/tree/master/charts/stable/duplicati
|
||||
icon: https://avatars.githubusercontent.com/u/8270231?s=200&v=4
|
||||
keywords:
|
||||
- duplicati
|
||||
|
@ -18,4 +18,4 @@ name: duplicati
|
|||
sources:
|
||||
- https://hub.docker.com/r/linuxserver/duplicati/
|
||||
- https://github.com/duplicati/duplicati
|
||||
version: 3.0.4
|
||||
version: 3.0.5
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue