Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
6442635f57
commit
2d29219e40
|
@ -1,9 +0,0 @@
|
|||
|
||||
|
||||
## [discordgsm-4.0.11](https://github.com/truecharts/charts/compare/discordgsm-4.0.10...discordgsm-4.0.11) (2023-11-17)
|
||||
|
||||
### Feat
|
||||
|
||||
- update container image discordgsm/discord-game-server-monitor to v2.15.0 ([#14800](https://github.com/truecharts/charts/issues/14800))
|
||||
|
||||
|
|
@ -4,6 +4,16 @@
|
|||
|
||||
|
||||
|
||||
## [discordgsm-4.0.12](https://github.com/truecharts/charts/compare/discordgsm-4.0.11...discordgsm-4.0.12) (2023-12-01)
|
||||
|
||||
### Chore
|
||||
|
||||
- cleanup chart.yaml and add min-max scale version
|
||||
- update container image discordgsm/discord-game-server-monitor to v2.15.1[@c0475aa](https://github.com/c0475aa) ([#15543](https://github.com/truecharts/charts/issues/15543))
|
||||
|
||||
|
||||
|
||||
|
||||
## [discordgsm-4.0.11](https://github.com/truecharts/charts/compare/discordgsm-4.0.10...discordgsm-4.0.11) (2023-11-17)
|
||||
|
||||
### Feat
|
||||
|
@ -87,13 +97,3 @@
|
|||
|
||||
## [discordgsm-4.0.1](https://github.com/truecharts/charts/compare/discordgsm-4.0.0...discordgsm-4.0.1) (2023-09-07)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/game-server-monitor to v2.14.0 ([#12321](https://github.com/truecharts/charts/issues/12321))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [discordgsm-4.0.0](https://github.com/truecharts/charts/compare/discordgsm-3.0.1...discordgsm-4.0.0) (2023-07-31)
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
apiVersion: v2
|
||||
appVersion: "2.15.0"
|
||||
appVersion: 2.15.1
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
|
@ -20,7 +20,9 @@ name: discordgsm
|
|||
sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/stable/discordgsm
|
||||
- https://github.com/DiscordGSM/GameServerMonitor
|
||||
version: 4.0.11
|
||||
version: 4.0.12
|
||||
annotations:
|
||||
min_scale_version: "22.12.4"
|
||||
max_scale_version: "23.10.1"
|
||||
truecharts.org/category: monitor
|
||||
truecharts.org/SCALE-support: "true"
|
|
@ -0,0 +1,10 @@
|
|||
|
||||
|
||||
## [discordgsm-4.0.12](https://github.com/truecharts/charts/compare/discordgsm-4.0.11...discordgsm-4.0.12) (2023-12-01)
|
||||
|
||||
### Chore
|
||||
|
||||
- cleanup chart.yaml and add min-max scale version
|
||||
- update container image discordgsm/discord-game-server-monitor to v2.15.1[@c0475aa](https://github.com/c0475aa) ([#15543](https://github.com/truecharts/charts/issues/15543))
|
||||
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
image:
|
||||
repository: discordgsm/discord-game-server-monitor
|
||||
pullPolicy: IfNotPresent
|
||||
tag: 2.15.0@sha256:8c9420272455b653b84e8c3e101352b67e1bda5a0b4599ee8f5a46d25b6647d0
|
||||
tag: 2.15.1@sha256:c0475aa31c9b425f18d615594ae5b3ac2eca05d9743c240a514656279853b1e0
|
||||
securityContext:
|
||||
container:
|
||||
runAsNonRoot: false
|
|
@ -1982,6 +1982,157 @@ questions:
|
|||
schema:
|
||||
type: int
|
||||
default: 36107
|
||||
- variable: ingress
|
||||
label: "Ingress"
|
||||
schema:
|
||||
additional_attrs: true
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: enabled
|
||||
label: Enable Ingress
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
show_subquestions_if: true
|
||||
subquestions:
|
||||
- variable: hosts
|
||||
label: Hosts
|
||||
schema:
|
||||
type: list
|
||||
default: []
|
||||
items:
|
||||
- variable: hostEntry
|
||||
label: Host
|
||||
schema:
|
||||
additional_attrs: true
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: host
|
||||
label: HostName
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
required: true
|
||||
- variable: paths
|
||||
label: Paths
|
||||
schema:
|
||||
type: list
|
||||
default: [{path: "/", pathType: "Prefix"}]
|
||||
items:
|
||||
- variable: pathEntry
|
||||
label: Host
|
||||
schema:
|
||||
additional_attrs: true
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: path
|
||||
label: Path
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
default: "/"
|
||||
- variable: pathType
|
||||
label: Path Type
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
default: Prefix
|
||||
- variable: certificateIssuer
|
||||
label: Cert-Manager clusterIssuer
|
||||
description: 'add the name of your cert-manager clusterIssuer here for automatic tls certificates. Cannot be used combined with tls option below'
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: middlewares
|
||||
label: Traefik Middlewares
|
||||
description: Add previously created Traefik Middlewares to this Ingress
|
||||
schema:
|
||||
type: list
|
||||
default: []
|
||||
items:
|
||||
- variable: name
|
||||
label: Name
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
required: true
|
||||
- variable: advanced
|
||||
label: Show Advanced Settings
|
||||
description: Advanced settings are not covered by TrueCharts Support
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
- variable: entrypoint
|
||||
label: (Advanced) Traefik Entrypoint
|
||||
description: Entrypoint used by Traefik when using Traefik as Ingress Provider
|
||||
schema:
|
||||
type: string
|
||||
default: websecure
|
||||
show_if: [["advanced", "=", true]]
|
||||
required: true
|
||||
- variable: allowCors
|
||||
label: "Allow Cross Origin Requests"
|
||||
schema:
|
||||
type: boolean
|
||||
show_if: [["advanced", "=", true]]
|
||||
default: false
|
||||
- variable: ingressClassName
|
||||
label: (Advanced/Optional) IngressClass Name
|
||||
schema:
|
||||
type: string
|
||||
show_if: [["advanced", "=", true]]
|
||||
default: ""
|
||||
- variable: tls
|
||||
label: TLS-Settings
|
||||
schema:
|
||||
type: list
|
||||
show_if: [["advanced", "=", true]]
|
||||
default: []
|
||||
items:
|
||||
- variable: tlsEntry
|
||||
label: Host
|
||||
schema:
|
||||
additional_attrs: true
|
||||
type: dict
|
||||
attrs:
|
||||
- variable: hosts
|
||||
label: Certificate Hosts
|
||||
schema:
|
||||
type: list
|
||||
default: []
|
||||
items:
|
||||
- variable: host
|
||||
label: Host
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
required: true
|
||||
- variable: certificateIssuer
|
||||
label: Use Cert-Manager clusterIssuer
|
||||
description: 'add the name of your cert-manager clusterIssuer here for automatic tls certificates.'
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: clusterCertificate
|
||||
label: 'Cluster Certificate (Advanced)'
|
||||
description: 'Add the name of your cluster-wide certificate, that you set up in the ClusterIssuer chart.'
|
||||
schema:
|
||||
type: string
|
||||
show_if: [["certificateIssuer", "=", ""]]
|
||||
default: ""
|
||||
- variable: secretName
|
||||
label: 'Use Custom Certificate Secret (Advanced)'
|
||||
schema:
|
||||
show_if: [["certificateIssuer", "=", ""]]
|
||||
type: string
|
||||
default: ""
|
||||
- variable: scaleCert
|
||||
label: 'Use TrueNAS SCALE Certificate (Deprecated)'
|
||||
schema:
|
||||
show_if: [["certificateIssuer", "=", ""]]
|
||||
type: int
|
||||
$ref:
|
||||
- "definitions/certificate"
|
||||
- variable: envList
|
||||
label: Codeserver Environment Variables
|
||||
schema:
|
Loading…
Reference in New Issue