This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/itzg/mc-router](https://redirect.github.com/itzg/mc-router) | minor | `3743907` -> `4b8fb4a` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard 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.36.0`](https://redirect.github.com/itzg/mc-router/releases/tag/v1.36.0) [Compare Source](https://redirect.github.com/itzg/mc-router/compare/v1.35.0...v1.36.0) #### Changelog - [`d0fcb93`](https://redirect.github.com/itzg/mc-router/commit/d0fcb93aa670d581eb3baf28f58ff93f97418478) feat: opt-out of auto-scaling per server (k8s) ([#​454](https://redirect.github.com/itzg/mc-router/issues/454)) - [`534afd4`](https://redirect.github.com/itzg/mc-router/commit/534afd4a6cc340c582fabb0a3db674e446d389a6) build(deps): bump github.com/docker/docker ([#​453](https://redirect.github.com/itzg/mc-router/issues/453)) - [`867af99`](https://redirect.github.com/itzg/mc-router/commit/867af994e3b1374426240c681c7d0b0565e36382) build(deps): bump the patches group with 2 updates ([#​452](https://redirect.github.com/itzg/mc-router/issues/452)) </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://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
76 lines
1.7 KiB
YAML
76 lines
1.7 KiB
YAML
image:
|
|
repository: docker.io/itzg/mc-router
|
|
pullPolicy: IfNotPresent
|
|
tag: 1.36.0@sha256:4b8fb4a0a035c7a1fa1098a0a1c59554bbbfa5b7558f3901ca21b942744c47f3
|
|
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
|