This PR contains the following updates: | Package | Update | Change | |---|---|---| | [discordgsm/discord-game-server-monitor](https://togithub.com/DiscordGSM/GameServerMonitor) | minor | `2.16.2` -> `2.17.0` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>DiscordGSM/GameServerMonitor (discordgsm/discord-game-server-monitor)</summary> ### [`v2.17.0`](https://togithub.com/DiscordGSM/GameServerMonitor/releases/tag/2.17.0) [Compare Source](https://togithub.com/DiscordGSM/GameServerMonitor/compare/2.16.2...2.17.0) #### Overview - Added support for **Myth of Empires**, **Silica**. - Resolved query issue in **Palworld**. - Introduced **Vietnamese** and **Hindi** language support. - Updated game protocols for enhanced server querying. #### What's Changed - Support Games: Myth of Empires, Silica by [@​xLeviNx](https://togithub.com/xLeviNx) in [https://github.com/DiscordGSM/GameServerMonitor/pull/79](https://togithub.com/DiscordGSM/GameServerMonitor/pull/79) - Bump tzdata from 2023.4 to 2024.1 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/DiscordGSM/GameServerMonitor/pull/77](https://togithub.com/DiscordGSM/GameServerMonitor/pull/77) - Bump pymongo from 4.6.1 to 4.6.2 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/DiscordGSM/GameServerMonitor/pull/78](https://togithub.com/DiscordGSM/GameServerMonitor/pull/78) - Bump opengsq from 3.0.10 to 3.1.0 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/DiscordGSM/GameServerMonitor/pull/76](https://togithub.com/DiscordGSM/GameServerMonitor/pull/76) - Add Vietnamese translations by [@​hoangvu12](https://togithub.com/hoangvu12) in [https://github.com/DiscordGSM/GameServerMonitor/pull/80](https://togithub.com/DiscordGSM/GameServerMonitor/pull/80) - Hindi (India) translation by [@​shankypedia](https://togithub.com/shankypedia) by [@​shankypedia](https://togithub.com/shankypedia) in [https://github.com/DiscordGSM/GameServerMonitor/pull/83](https://togithub.com/DiscordGSM/GameServerMonitor/pull/83) #### New Contributors - [@​hoangvu12](https://togithub.com/hoangvu12) made their first contribution in [https://github.com/DiscordGSM/GameServerMonitor/pull/80](https://togithub.com/DiscordGSM/GameServerMonitor/pull/80) - [@​shankypedia](https://togithub.com/shankypedia) made their first contribution in [https://github.com/DiscordGSM/GameServerMonitor/pull/83](https://togithub.com/DiscordGSM/GameServerMonitor/pull/83) **Full Changelog**: https://github.com/DiscordGSM/GameServerMonitor/compare/2.16.2...2.17.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://togithub.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNDkuMyIsInVwZGF0ZWRJblZlciI6IjM3LjI0OS4zIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
73 lines
1.6 KiB
YAML
73 lines
1.6 KiB
YAML
image:
|
|
repository: discordgsm/discord-game-server-monitor
|
|
pullPolicy: IfNotPresent
|
|
tag: 2.17.0@sha256:9363802762aedc82aef8843dee025b5dc613eaa8013aac679c5d92b7ef1aeec0
|
|
securityContext:
|
|
container:
|
|
runAsNonRoot: false
|
|
readOnlyRootFilesystem: false
|
|
runAsUser: 0
|
|
runAsGroup: 0
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 10230
|
|
protocol: http
|
|
gsm:
|
|
# Server Config
|
|
workers: 2
|
|
timeout: 90
|
|
# Bot Config
|
|
app_token: ""
|
|
whitelist_guilds: []
|
|
app_activity_type: 3
|
|
app_activity_name: ""
|
|
app_presence_advertise: false
|
|
task_query_server: 60
|
|
command_query_public: false
|
|
command_query_cooldown: 5
|
|
web_api_enable: false
|
|
postgres_ssl_mode: disable
|
|
# factorio
|
|
factorio_username: ""
|
|
factorio_auth_token: ""
|
|
workload:
|
|
main:
|
|
podSpec:
|
|
containers:
|
|
main:
|
|
probes:
|
|
liveness:
|
|
type: http
|
|
readiness:
|
|
type: http
|
|
startup:
|
|
type: http
|
|
envFrom:
|
|
- secretRef:
|
|
name: "gsm-secret"
|
|
command:
|
|
- /bin/sh
|
|
- -c
|
|
- |
|
|
gunicorn \
|
|
--bind 0.0.0.0:{{ .Values.service.main.ports.main.port }} \
|
|
--workers={{ .Values.gsm.workers }} \
|
|
--worker-class=gthread app:app \
|
|
--timeout {{ .Values.gsm.timeout }} & \
|
|
python -u main.py
|
|
env: {}
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
mountPath: /app/data
|
|
cnpg:
|
|
main:
|
|
enabled: true
|
|
database: discord_gsm
|
|
user: discord_gsm
|
|
portal:
|
|
open:
|
|
enabled: true
|