Commit new App releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2021-10-05 10:00:47 +00:00
parent e08d0f8aa1
commit ec36ef80ae
19 changed files with 76 additions and 22 deletions

View File

@ -1,8 +0,0 @@
<a name="postgresql-3.0.6"></a>
### [postgresql-3.0.6](https://github.com/truecharts/apps/compare/postgresql-3.0.5...postgresql-3.0.6) (2021-09-29)
#### Chore
* update helm chart common to v8.0.13 ([#1060](https://github.com/truecharts/apps/issues/1060))

View File

@ -1,6 +0,0 @@
dependencies:
- name: common
repository: https://truecharts.org
version: 8.0.13
digest: sha256:0a74fa89337aa4fd64c9e6cd0b9935f86dc5b80a9f5f3811cde16eeee14353fe
generated: "2021-09-29T16:16:04.619067695Z"

View File

@ -0,0 +1,4 @@
<a name="postgresql-3.0.7"></a>
### [postgresql-3.0.7](https://github.com/truecharts/apps/compare/postgresql-3.0.6...postgresql-3.0.7) (2021-10-05)

View File

@ -0,0 +1,6 @@
dependencies:
- name: common
repository: https://truecharts.org
version: 8.2.2
digest: sha256:f6a5238049ab6ad23f6a78c95f09040de216674c846d3c35dddab95ab09406ef
generated: "2021-10-05T09:59:40.00872575Z"

View File

@ -3,7 +3,7 @@ appVersion: "13.4.0"
dependencies:
- name: common
repository: https://truecharts.org
version: 8.0.13
version: 8.2.2
deprecated: false
description: PostgresSQL
home: https://github.com/truecharts/apps/tree/master/stable/postgres
@ -25,4 +25,4 @@ name: postgresql
sources:
- https://www.postgresql.org/
type: application
version: 3.0.6
version: 3.0.7

View File

@ -17,7 +17,7 @@ Kubernetes: `>=1.16.0-0`
| Repository | Name | Version |
|------------|------|---------|
| https://truecharts.org | common | 8.0.13 |
| https://truecharts.org | common | 8.2.2 |
## Installing the Chart

Binary file not shown.

View File

@ -158,6 +158,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"
@ -1290,6 +1296,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: ""
@ -1306,13 +1323,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:
@ -1323,16 +1340,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