This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/itzg/mc-router](https://redirect.github.com/itzg/mc-router) | patch | `1a7bdbd` → `b4f4c50` | --- > [!WARNING] > Some dependencies could not be looked up. Check the [Dependency Dashboard](../issues/18710) for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>itzg/mc-router (docker.io/itzg/mc-router)</summary> ### [`v1.43.1`](https://redirect.github.com/itzg/mc-router/releases/tag/v1.43.1) [Compare Source](https://redirect.github.com/itzg/mc-router/compare/v1.43.0...v1.43.1) #### What's Changed - Upgrade to Go 1.26.4 by [@​itzg](https://redirect.github.com/itzg) in [#​554](https://redirect.github.com/itzg/mc-router/pull/554) **Full Changelog**: <https://github.com/itzg/mc-router/compare/v1.43.0...v1.43.1> </details> --- ### Configuration 📅 **Schedule**: (UTC) - 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://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xMzAuMSIsInVwZGF0ZWRJblZlciI6IjQzLjEzMC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImFwcC9taW5lY3JhZnQtcm91dGVyIiwiYXV0b21lcmdlIiwicmVub3ZhdGUvY29udGFpbmVyIiwidHlwZS9wYXRjaCJdfQ==-->
77 lines
1.8 KiB
YAML
77 lines
1.8 KiB
YAML
# yaml-language-server: $schema=./values.schema.json
|
|
image:
|
|
repository: docker.io/itzg/mc-router
|
|
pullPolicy: IfNotPresent
|
|
tag: 1.43.1@sha256:b4f4c50ba90ab2ea93cff96b7cba1c1d7d41f3e580ce20d989e4d6744f054a53
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 25565
|
|
api:
|
|
enabled: true
|
|
ports:
|
|
api:
|
|
enabled: true
|
|
port: 25564
|
|
|
|
# manual option
|
|
mcrouter:
|
|
# vanilla:25565
|
|
default: ""
|
|
mappings: []
|
|
# - vanilla:25565
|
|
# - forge:25565
|
|
|
|
workload:
|
|
main:
|
|
podSpec:
|
|
containers:
|
|
main:
|
|
probes:
|
|
liveness:
|
|
port: "{{ .Values.service.api.ports.api.port }}"
|
|
path: /routes
|
|
httpHeaders:
|
|
Accept: application/json
|
|
readiness:
|
|
port: "{{ .Values.service.api.ports.api.port }}"
|
|
path: /routes
|
|
httpHeaders:
|
|
Accept: application/json
|
|
startup:
|
|
port: "{{ .Values.service.api.ports.api.port }}"
|
|
path: /routes
|
|
httpHeaders:
|
|
Accept: application/json
|
|
env:
|
|
API_BINDING: ":{{ .Values.service.api.ports.api.port }}"
|
|
PORT: "{{ .Values.service.main.ports.main.port }}"
|
|
# enabled for auto discovery to work
|
|
IN_KUBE_CLUSTER: true
|
|
# leave blank for all namespaces
|
|
# KUBE_NAMESPACE: ""
|
|
DEFAULT: "{{ .Values.mcrouter.default }}"
|
|
MAPPING: '{{ join "," .Values.mcrouter.mappings }}'
|
|
|
|
rbac:
|
|
main:
|
|
enabled: true
|
|
primary: true
|
|
clusterWide: true
|
|
rules:
|
|
- apiGroups: [""]
|
|
resources:
|
|
- "services"
|
|
verbs:
|
|
- "list"
|
|
- "watch"
|
|
|
|
serviceAccount:
|
|
main:
|
|
enabled: true
|
|
primary: true
|
|
|
|
podOptions:
|
|
automountServiceAccountToken: true
|