Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2022-12-01 22:34:25 +00:00
parent 71a6c08ada
commit a24d029b34
14 changed files with 140 additions and 45 deletions

View File

@ -1,9 +0,0 @@
## [discordgsm-0.0.4]discordgsm-0.0.4 (2022-11-30)
### Chore
- update container image tccr.io/truecharts/game-server-monitor to v2.9.1 ([#4923](https://github.com/truecharts/charts/issues/4923))

View File

@ -0,0 +1,99 @@
**Important:**
*for the complete changelog, please refer to the website*
## [discordgsm-0.0.5](https://github.com/truecharts/charts/compare/discordgsm-0.0.4...discordgsm-0.0.5) (2022-12-01)
## [discordgsm-0.0.4]discordgsm-0.0.4 (2022-11-30)
### Chore
- update container image tccr.io/truecharts/game-server-monitor to v2.9.1 ([#4923](https://github.com/truecharts/charts/issues/4923))
## [discordgsm-0.0.4]discordgsm-0.0.4 (2022-11-30)
### Chore
- update container image tccr.io/truecharts/game-server-monitor to v2.9.1 ([#4923](https://github.com/truecharts/charts/issues/4923))
## [discordgsm-0.0.4]discordgsm-0.0.4 (2022-11-30)
### Chore
- update container image tccr.io/truecharts/game-server-monitor to v2.9.1 ([#4923](https://github.com/truecharts/charts/issues/4923))
## [discordgsm-0.0.4]discordgsm-0.0.4 (2022-11-30)
### Chore
- update container image tccr.io/truecharts/game-server-monitor to v2.9.1 ([#4923](https://github.com/truecharts/charts/issues/4923))
## [discordgsm-0.0.4]discordgsm-0.0.4 (2022-11-30)
### Chore
- update container image tccr.io/truecharts/game-server-monitor to v2.9.1 ([#4923](https://github.com/truecharts/charts/issues/4923))
## [discordgsm-0.0.4]discordgsm-0.0.4 (2022-11-30)
### Chore
- update container image tccr.io/truecharts/game-server-monitor to v2.9.1 ([#4923](https://github.com/truecharts/charts/issues/4923))
## [discordgsm-0.0.4]discordgsm-0.0.4 (2022-11-30)
### Chore
- update container image tccr.io/truecharts/game-server-monitor to v2.9.1 ([#4923](https://github.com/truecharts/charts/issues/4923))
## [discordgsm-0.0.4]discordgsm-0.0.4 (2022-11-30)
### Chore
- update container image tccr.io/truecharts/game-server-monitor to v2.9.1 ([#4923](https://github.com/truecharts/charts/issues/4923))
## [discordgsm-0.0.4]discordgsm-0.0.4 (2022-11-30)
### Chore
- update container image tccr.io/truecharts/game-server-monitor to v2.9.1 ([#4923](https://github.com/truecharts/charts/issues/4923))
## [discordgsm-0.0.4]discordgsm-0.0.4 (2022-11-30)
### Chore
- update container image tccr.io/truecharts/game-server-monitor to v2.9.1 ([#4923](https://github.com/truecharts/charts/issues/4923))

View File

@ -24,7 +24,7 @@ name: discordgsm
sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/discordgsm
- https://github.com/DiscordGSM/GameServerMonitor
version: 0.0.4
version: 0.0.5
annotations:
truecharts.org/catagories: |
- monitor

View File

@ -0,0 +1,4 @@
## [discordgsm-0.0.5](https://github.com/truecharts/charts/compare/discordgsm-0.0.4...discordgsm-0.0.5) (2022-12-01)

View File

@ -27,7 +27,6 @@ gsm:
workers: 2
timeout: 90
# Bot Config
# Fake Token for CI
app_token: ""
whitelist_guilds: []
app_activity_type: 3

View File

@ -120,12 +120,14 @@ questions:
enum:
- value: "0"
description: Playing
- value: "1"
description: Streaming
- value: "2"
description: Listening
- value: "3"
description: Watching
- value: "5"
description: Playing
description: Competing
- variable: app_activity_name
label: App Activity Name
description: Presence activity name override.
@ -133,7 +135,7 @@ questions:
type: string
default: ""
- variable: app_presence_advertise
label: App Presense Advertise
label: App Presence Advertise
description: Enable advertisement feature on presence
schema:
type: boolean

View File

@ -1,32 +1,32 @@
{{/* Define the secret */}}
{{- define "gsm.secret" -}}
{{- $secretName := printf "%s-gsm-secret" (include "tc.common.names.fullname" .) }}
---
apiVersion: v1
kind: Secret
type: Opaque
metadata:
name: {{ $secretName }}
labels:
{{- include "tc.common.labels" . | nindent 4 }}
stringData:
DATABASE_URL: {{ .Values.postgresql.url.complete | trimAll "\"" }}
DB_CONNECTION: {{ print "postgres" }}
APP_TOKEN: {{ .Values.gsm.app_token | quote }}
{{- with .Values.gsm.whitelist_guilds }}
WHITELIST_GUILDS: {{ join ";" . }}
{{- end }}
APP_ACTIVITY_TYPE: {{ .Values.gsm.app_activity_type | quote }}
{{- with .Values.gsm.app_activity_name }}
APP_ACTIVITY_NAME: {{ . | quote }}
{{- end }}
APP_PRESENCE_ADVERTISE: {{ .Values.gsm.app_presence_advertise | quote }}
POSTGRES_SSL_MODE: {{ .Values.gsm.postgres_ssl_mode | quote }}
TASK_QUERY_SERVER: {{ .Values.gsm.task_query_server | quote }}
COMMAND_QUERY_PUBLIC: {{ .Values.gsm.command_query_public | quote }}
COMMAND_QUERY_COOLDOWN: {{ .Values.gsm.command_query_cooldown | quote }}
WEB_API_ENABLE: {{ .Values.gsm.web_api_enable | quote }}
{{- end }}
{{/* Define the secret */}}
{{- define "gsm.secret" -}}
{{- $secretName := printf "%s-gsm-secret" (include "tc.common.names.fullname" .) }}
---
apiVersion: v1
kind: Secret
type: Opaque
metadata:
name: {{ $secretName }}
labels:
{{- include "tc.common.labels" . | nindent 4 }}
stringData:
DATABASE_URL: {{ .Values.postgresql.url.complete | trimAll "\"" }}
DB_CONNECTION: {{ print "postgres" }}
APP_TOKEN: {{ .Values.gsm.app_token | quote }}
{{- with .Values.gsm.whitelist_guilds }}
WHITELIST_GUILDS: {{ join ";" . | quote }}
{{- end }}
APP_ACTIVITY_TYPE: {{ .Values.gsm.app_activity_type | quote }}
{{- with .Values.gsm.app_activity_name }}
APP_ACTIVITY_NAME: {{ . | quote }}
{{- end }}
APP_PRESENCE_ADVERTISE: {{ .Values.gsm.app_presence_advertise | quote }}
POSTGRES_SSL_MODE: {{ .Values.gsm.postgres_ssl_mode | quote }}
TASK_QUERY_SERVER: {{ .Values.gsm.task_query_server | quote }}
COMMAND_QUERY_PUBLIC: {{ .Values.gsm.command_query_public | quote }}
COMMAND_QUERY_COOLDOWN: {{ .Values.gsm.command_query_cooldown | quote }}
WEB_API_ENABLE: {{ .Values.gsm.web_api_enable | quote }}
{{- end }}