Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
8
incubator/mc-router/0.0.1/CHANGELOG.md
Normal file
8
incubator/mc-router/0.0.1/CHANGELOG.md
Normal file
@@ -0,0 +1,8 @@
|
||||
**Important:**
|
||||
*for the complete changelog, please refer to the website*
|
||||
|
||||
|
||||
|
||||
|
||||
## [mc-router-0.0.1]mc-router-0.0.1 (2023-06-27)
|
||||
|
||||
28
incubator/mc-router/0.0.1/Chart.yaml
Normal file
28
incubator/mc-router/0.0.1/Chart.yaml
Normal file
@@ -0,0 +1,28 @@
|
||||
apiVersion: v2
|
||||
appVersion: "1.18.1"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 12.14.6
|
||||
deprecated: false
|
||||
description: Routes Minecraft client connections to backend servers.
|
||||
home: https://truecharts.org/charts/incubator/mc-router
|
||||
icon: https://truecharts.org/img/hotlink-ok/chart-icons/mc-router.png
|
||||
keywords:
|
||||
- mc-router
|
||||
- minecraft
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
maintainers:
|
||||
- email: info@truecharts.org
|
||||
name: TrueCharts
|
||||
url: https://truecharts.org
|
||||
name: mc-router
|
||||
sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/incubator/mc-router
|
||||
- https://github.com/itzg/mc-router
|
||||
type: application
|
||||
version: 0.0.1
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- minecraft
|
||||
truecharts.org/SCALE-support: "true"
|
||||
1
incubator/mc-router/0.0.1/README.md
Normal file
1
incubator/mc-router/0.0.1/README.md
Normal file
@@ -0,0 +1 @@
|
||||
# README
|
||||
4
incubator/mc-router/0.0.1/app-changelog.md
Normal file
4
incubator/mc-router/0.0.1/app-changelog.md
Normal file
@@ -0,0 +1,4 @@
|
||||
|
||||
|
||||
## [mc-router-0.0.1]mc-router-0.0.1 (2023-06-27)
|
||||
|
||||
8
incubator/mc-router/0.0.1/app-readme.md
Normal file
8
incubator/mc-router/0.0.1/app-readme.md
Normal file
@@ -0,0 +1,8 @@
|
||||
Routes Minecraft client connections to backend servers.
|
||||
|
||||
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/incubator/mc-router](https://truecharts.org/charts/incubator/mc-router)
|
||||
|
||||
---
|
||||
|
||||
TrueCharts can only exist due to the incredible effort of our staff.
|
||||
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!
|
||||
BIN
incubator/mc-router/0.0.1/charts/common-12.14.6.tgz
Normal file
BIN
incubator/mc-router/0.0.1/charts/common-12.14.6.tgz
Normal file
Binary file not shown.
43
incubator/mc-router/0.0.1/ix_values.yaml
Normal file
43
incubator/mc-router/0.0.1/ix_values.yaml
Normal file
@@ -0,0 +1,43 @@
|
||||
image:
|
||||
repository: tccr.io/truecharts/mc-router
|
||||
pullPolicy: IfNotPresent
|
||||
tag: v1.18.1@sha256:24c0c3e65c62a54eabf1a461ad8d0789d444f9b93c130d5720c249b703dafc23
|
||||
|
||||
service:
|
||||
main:
|
||||
ports:
|
||||
main:
|
||||
port: 25564
|
||||
minecraft:
|
||||
enabled: true
|
||||
ports:
|
||||
minecraft:
|
||||
enabled: true
|
||||
port: 25565
|
||||
|
||||
mcrouter:
|
||||
host_minecraft:
|
||||
- "minecraft.local=localhost:25566"
|
||||
|
||||
workload:
|
||||
main:
|
||||
podSpec:
|
||||
containers:
|
||||
main:
|
||||
probes:
|
||||
liveness:
|
||||
enabled: false
|
||||
readiness:
|
||||
enabled: false
|
||||
startup:
|
||||
enabled: false
|
||||
envFrom:
|
||||
- secretRef:
|
||||
name: "secrets"
|
||||
env:
|
||||
API_BINDING: ":{{ .Values.service.main.ports.main.port }}"
|
||||
PORT: "{{ .Values.service.minecraft.ports.minecraft.port }}"
|
||||
|
||||
portal:
|
||||
open:
|
||||
enabled: false
|
||||
1924
incubator/mc-router/0.0.1/questions.yaml
Normal file
1924
incubator/mc-router/0.0.1/questions.yaml
Normal file
File diff suppressed because it is too large
Load Diff
1
incubator/mc-router/0.0.1/templates/NOTES.txt
Normal file
1
incubator/mc-router/0.0.1/templates/NOTES.txt
Normal file
@@ -0,0 +1 @@
|
||||
{{- include "tc.v1.common.lib.chart.notes" $ -}}
|
||||
8
incubator/mc-router/0.0.1/templates/_secrets.tpl
Normal file
8
incubator/mc-router/0.0.1/templates/_secrets.tpl
Normal file
@@ -0,0 +1,8 @@
|
||||
{{/* Define the secrets */}}
|
||||
{{- define "mcrouter.secrets" -}}
|
||||
{{- $mcrouter := .Values.mcrouter }}
|
||||
|
||||
enabled: true
|
||||
data:
|
||||
MAPPING: {{ join "," $mcrouter.host_minecraft }}
|
||||
{{- end -}}
|
||||
11
incubator/mc-router/0.0.1/templates/common.yaml
Normal file
11
incubator/mc-router/0.0.1/templates/common.yaml
Normal file
@@ -0,0 +1,11 @@
|
||||
{{/* Make sure all variables are set properly */}}
|
||||
{{- include "tc.v1.common.loader.init" . }}
|
||||
|
||||
{{/* Render secrets for mcrouter */}}
|
||||
{{- $secrets := include "mcrouter.secrets" . | fromYaml -}}
|
||||
{{- if $secrets -}}
|
||||
{{- $_ := set .Values.secret "secrets" $secrets -}}
|
||||
{{- end -}}
|
||||
|
||||
{{/* Render the templates */}}
|
||||
{{ include "tc.v1.common.loader.apply" . }}
|
||||
0
incubator/mc-router/0.0.1/values.yaml
Normal file
0
incubator/mc-router/0.0.1/values.yaml
Normal file
5
incubator/mc-router/item.yaml
Normal file
5
incubator/mc-router/item.yaml
Normal file
@@ -0,0 +1,5 @@
|
||||
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/mc-router.png
|
||||
categories:
|
||||
- minecraft
|
||||
|
||||
screenshots: []
|
||||
Reference in New Issue
Block a user