feat(minecraft-gate) add minecraft-gate (#28591)

**Description**
Gate is an extensible, high performant & paralleled Minecraft proxy
server with scalability, flexibility & excellent server version support
- written in Go and ready for the cloud!
⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

- [X] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [X] ⚖️ My code follows the style guidelines of this project
- [X] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made corresponding changes to the documentation
- [ ] ⚠️ My changes generate no new warnings
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning
- [ ] I made sure the title starts with `feat(chart-name):`,
`fix(chart-name):` or `chore(chart-name):`

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [X] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._
This commit is contained in:
Xstar97TheNoob
2024-10-30 20:05:36 -04:00
committed by GitHub
parent f77ecc44a8
commit 653dfa119f
8 changed files with 140 additions and 0 deletions

View File

@@ -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

View File

@@ -0,0 +1,4 @@
---
title: Changelog
pagefind: false
---

View File

@@ -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

View File

@@ -0,0 +1,3 @@
---
title: README
---

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

View File

@@ -0,0 +1 @@
{{- include "tc.v1.common.lib.chart.notes" $ -}}

View File

@@ -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" . }}

View File

@@ -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