diff --git a/charts/incubator/minecraft-gate/.helmignore b/charts/incubator/minecraft-gate/.helmignore new file mode 100644 index 00000000000..feb7464da6f --- /dev/null +++ b/charts/incubator/minecraft-gate/.helmignore @@ -0,0 +1,32 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*~ +# Various IDEs +.project +.idea/ +*.tmproj +.vscode/ +# OWNERS file for Kubernetes +OWNERS +# helm-docs templates +*.gotmpl +# docs folder +/docs +# icon +icon.png +icon.webp +icon-small.webp diff --git a/charts/incubator/minecraft-gate/CHANGELOG.md b/charts/incubator/minecraft-gate/CHANGELOG.md new file mode 100644 index 00000000000..f3e8318aa10 --- /dev/null +++ b/charts/incubator/minecraft-gate/CHANGELOG.md @@ -0,0 +1,4 @@ +--- +title: Changelog +pagefind: false +--- diff --git a/charts/incubator/minecraft-gate/Chart.yaml b/charts/incubator/minecraft-gate/Chart.yaml new file mode 100644 index 00000000000..25a5a5a731a --- /dev/null +++ b/charts/incubator/minecraft-gate/Chart.yaml @@ -0,0 +1,37 @@ +annotations: + max_scale_version: 24.04.1 + min_scale_version: 24.04.0 + truecharts.org/category: games + truecharts.org/max_helm_version: "3.15" + truecharts.org/min_helm_version: "3.11" + truecharts.org/train: incubator +apiVersion: v2 +appVersion: latest +dependencies: + - name: common + version: 25.1.5 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] +deprecated: false +description: An extensible, high performant & paralleled Minecraft proxy server. +home: https://truecharts.org/charts/stable/minecraft-gate +icon: https://truecharts.org/img/hotlink-ok/chart-icons/minecraft-router.webp +keywords: + - minecraft-gate + - proxy + - minecraft +kubeVersion: '>=1.24.0-0' +maintainers: + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org +name: minecraft-gate +sources: + - https://ghcr.io/minekube/gate + - https://github.com/minekube/gate + - https://github.com/truecharts/charts/tree/master/charts/incubator/minecraft-gate +type: application +version: 0.0.1 diff --git a/charts/incubator/minecraft-gate/README.md b/charts/incubator/minecraft-gate/README.md new file mode 100644 index 00000000000..2b8cc49d247 --- /dev/null +++ b/charts/incubator/minecraft-gate/README.md @@ -0,0 +1,3 @@ +--- +title: README +--- diff --git a/charts/incubator/minecraft-gate/icon.webp b/charts/incubator/minecraft-gate/icon.webp new file mode 100644 index 00000000000..cf08cd28f1d Binary files /dev/null and b/charts/incubator/minecraft-gate/icon.webp differ diff --git a/charts/incubator/minecraft-gate/templates/NOTES.txt b/charts/incubator/minecraft-gate/templates/NOTES.txt new file mode 100644 index 00000000000..efcb74cb772 --- /dev/null +++ b/charts/incubator/minecraft-gate/templates/NOTES.txt @@ -0,0 +1 @@ +{{- include "tc.v1.common.lib.chart.notes" $ -}} diff --git a/charts/incubator/minecraft-gate/templates/common.yaml b/charts/incubator/minecraft-gate/templates/common.yaml new file mode 100644 index 00000000000..995efb03eb0 --- /dev/null +++ b/charts/incubator/minecraft-gate/templates/common.yaml @@ -0,0 +1,5 @@ +{{/* Make sure all variables are set properly */}} +{{- include "tc.v1.common.loader.init" . }} + +{{/* Render the templates */}} +{{ include "tc.v1.common.loader.apply" . }} diff --git a/charts/incubator/minecraft-gate/values.yaml b/charts/incubator/minecraft-gate/values.yaml new file mode 100644 index 00000000000..839e8b2fd0f --- /dev/null +++ b/charts/incubator/minecraft-gate/values.yaml @@ -0,0 +1,58 @@ +image: + repository: ghcr.io/minekube/gate + pullPolicy: IfNotPresent + tag: latest@sha256:f607f64b7b83f4a993719c1b50eddf5d481c683b321619cc627039c481a67f88 +service: + main: + enabled: true + ports: + main: + enabled: true + protocol: tcp + port: 25565 + query: + enabled: true + protocol: udp + port: 25565 + +configmap: + config: + enabled: true + data: + config.yml: |- + config: + bind: 0.0.0.0:{{ .Values.service.main.ports.main.port }} + servers: + server1: localhost:25566 + try: + - server1 + query: + enabled: true + port: "{{ .Values.service.main.ports.query.port }}" + showPlugins: false + +workload: + main: + podSpec: + containers: + main: + tty: true + stdin: true + probes: + liveness: + type: tcp + readiness: + type: tcp + startup: + type: tcp + +persistence: + config-file: + enabled: true + type: configmap + objectName: config + mountPath: "/config.yml" + +portal: + open: + enabled: false