Commit new App releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2022-02-04 20:21:37 +00:00
parent bf69505dc5
commit 2185e39414
30 changed files with 5341 additions and 0 deletions

View File

@ -0,0 +1,14 @@
# Changelog<br>
<a name="imposter-server-0.0.2"></a>
### imposter-server-0.0.2 (2022-02-04)
#### Feat
* add games train and two gameservers ([#1839](https://github.com/truecharts/apps/issues/1839))
#### Fix
* correct PUID references

View File

@ -0,0 +1,8 @@
# Configuration Options
##### Connecting to other apps
If you need to connect this App to other Apps on TrueNAS SCALE, please refer to our "Linking Apps Internally" quick-start guide:
https://truecharts.org/manual/Quick-Start%20Guides/14-linking-apps/
##### Available config options
In the future this page is going to contain an automated list of options available in the installation/edit UI.

View File

@ -0,0 +1,6 @@
dependencies:
- name: common
repository: https://truecharts.org
version: 8.14.4
digest: sha256:174540169e6b40685bffe5c1bcc04b46e4fea44e824666dc750f5b640e9d410a
generated: "2022-02-04T20:17:28.27783571Z"

View File

@ -0,0 +1,27 @@
apiVersion: v2
appVersion: "1.6.0"
dependencies:
- name: common
repository: https://truecharts.org
version: 8.14.4
deprecated: false
description: A private Among Us server
home: https://github.com/truecharts/apps/tree/master/charts/games/impostor-server
icon: https://truecharts.org/_static/img/appicons/impostor-server-icon.png
keywords:
- imposter-server
kubeVersion: '>=1.16.0-0'
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: https://truecharts.org
name: imposter-server
sources:
- https://github.com/truecharts/apps/tree/master/incubator/imposter-server
type: application
version: 0.0.2
annotations:
truecharts.org/catagories: |
- games
truecharts.org/SCALE-support: "true"
truecharts.org/grade: U

View File

@ -0,0 +1,37 @@
# Introduction
A private Among Us server
TrueCharts are designed to be installed as TrueNAS SCALE app only. We can not guarantee this charts works as a stand-alone helm installation.
**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/apps/issues/new/choose)**
## Source Code
* <https://github.com/truecharts/apps/tree/master/incubator/imposter-server>
## Requirements
Kubernetes: `>=1.16.0-0`
## Dependencies
| Repository | Name | Version |
|------------|------|---------|
| https://truecharts.org | common | 8.14.4 |
## Installing the Chart
To install this App on TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/03-Installing-an-App/).
## Uninstalling the Chart
To remove this App from TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/07-Deleting-an-App/).
## Support
- Please check our [quick-start guides](https://truecharts.org/manual/Quick-Start%20Guides/01-Open-Apps/) first.
- See the [Wiki](https://truecharts.org)
- Check our [Discord](https://discord.gg/tVsPTHWTtr)
- Open a [issue](https://github.com/truecharts/apps/issues/new/choose)
---
All Rights Reserved - The TrueCharts Project

View File

@ -0,0 +1,3 @@
A private Among Us server
This App is supplied by TrueCharts, for more information please visit https://truecharts.org

Binary file not shown.

View File

@ -0,0 +1,4 @@
image:
repository: tccr.io/truecharts/impostor-server-nightly
pullPolicy: IfNotPresent
tag: vnightly@sha256:b80672dfa902a5c0fa485031f63c702899f182dc0d3af84e97718049a0af2399

View File

@ -0,0 +1,35 @@
# Default Helm-Values
TrueCharts is primarily build to supply TrueNAS SCALE Apps.
However, we also supply all Apps as standard Helm-Charts. In this document we aim to document the default values in our values.yaml file.
Most of our Apps also consume our "common" Helm Chart.
If this is the case, this means that all values.yaml values are set to the common chart values.yaml by default. This values.yaml file will only contain values that deviate from the common chart.
You will, however, be able to use all values referenced in the common chart here, besides the values listed in this document.
## Values
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| env.IMPOSTOR_AntiCheat__BanIpFromGame | bool | `true` | |
| env.IMPOSTOR_AntiCheat__Enabled | bool | `true` | |
| env.IMPOSTOR_Debug__GameRecorderEnabled | bool | `false` | |
| env.IMPOSTOR_Debug__GameRecorderPath | string | `""` | |
| env.IMPOSTOR_Server__ListenIp | string | `"0.0.0.0"` | |
| env.IMPOSTOR_Server__PublicIp | string | `"127.0.0.1"` | |
| env.PUID | int | `568` | |
| env.USER_ID | string | `"{{ .Values.env.PUID }}"` | |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"tccr.io/truecharts/impostor-server"` | |
| image.tag | string | `"v1.6.0@sha256:789dda6ea04417d5a7abb9f0373e53ecab7a2cd7b77fa7fc8d9620d977b0e863"` | |
| nightlyImage.pullPolicy | string | `"IfNotPresent"` | |
| nightlyImage.repository | string | `"tccr.io/truecharts/impostor-server-nightly"` | |
| nightlyImage.tag | string | `"vnightly@sha256:b80672dfa902a5c0fa485031f63c702899f182dc0d3af84e97718049a0af2399"` | |
| probes.liveness | object | See below | Liveness probe configuration |
| probes.readiness | object | See below | Redainess probe configuration |
| probes.startup | object | See below | Startup probe configuration |
| service.main.ports.main.port | int | `22023` | |
| service.main.ports.main.protocol | string | `"UDP"` | |
| service.main.ports.main.targetPort | int | `22023` | |
All Rights Reserved - The TrueCharts Project

View File

@ -0,0 +1,43 @@
image:
repository: tccr.io/truecharts/impostor-server
pullPolicy: IfNotPresent
tag: v1.6.0@sha256:789dda6ea04417d5a7abb9f0373e53ecab7a2cd7b77fa7fc8d9620d977b0e863
nightlyImage:
repository: tccr.io/truecharts/impostor-server-nightly
pullPolicy: IfNotPresent
tag: vnightly@sha256:b80672dfa902a5c0fa485031f63c702899f182dc0d3af84e97718049a0af2399
env:
PUID: 568
USER_ID: "{{ .Values.env.PUID }}"
IMPOSTOR_Server__PublicIp: "127.0.0.1"
IMPOSTOR_Server__ListenIp: "0.0.0.0"
IMPOSTOR_AntiCheat__Enabled: true
IMPOSTOR_AntiCheat__BanIpFromGame: true
IMPOSTOR_Debug__GameRecorderEnabled: false
IMPOSTOR_Debug__GameRecorderPath: ""
service:
main:
ports:
main:
protocol: UDP
port: 22023
targetPort: 22023
probes:
# -- Liveness probe configuration
# @default -- See below
liveness:
enabled: false
# -- Redainess probe configuration
# @default -- See below
readiness:
enabled: false
# -- Startup probe configuration
# @default -- See below
startup:
enabled: false

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{{ include "common.all" . }}

View File

View File

@ -0,0 +1,4 @@
icon_url: https://truecharts.org/_static/img/appicons/impostor-server-icon.png
categories:
- games

View File

@ -0,0 +1,14 @@
# Changelog<br>
<a name="minecraft-bedrock-0.0.2"></a>
### minecraft-bedrock-0.0.2 (2022-02-04)
#### Feat
* add games train and two gameservers ([#1839](https://github.com/truecharts/apps/issues/1839))
#### Fix
* correct PUID references

View File

@ -0,0 +1,8 @@
# Configuration Options
##### Connecting to other apps
If you need to connect this App to other Apps on TrueNAS SCALE, please refer to our "Linking Apps Internally" quick-start guide:
https://truecharts.org/manual/Quick-Start%20Guides/14-linking-apps/
##### Available config options
In the future this page is going to contain an automated list of options available in the installation/edit UI.

View File

@ -0,0 +1,6 @@
dependencies:
- name: common
repository: https://truecharts.org
version: 8.14.4
digest: sha256:174540169e6b40685bffe5c1bcc04b46e4fea44e824666dc750f5b640e9d410a
generated: "2022-02-04T20:17:28.289805645Z"

View File

@ -0,0 +1,28 @@
apiVersion: v2
appVersion: "2022.1.0"
dependencies:
- name: common
repository: https://truecharts.org
version: 8.14.4
deprecated: false
description: Minecraft Bedrock Dedicated Server
home: https://github.com/truecharts/apps/tree/master/charts/games/minecraft-bedrock
icon: https://truecharts.org/_static/img/appicons/minecraft-bedrock-icon.png
keywords:
- minecraft
kubeVersion: '>=1.16.0-0'
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: https://truecharts.org
name: minecraft-bedrock
sources:
- https://github.com/itzg/docker-minecraft-server
- https://hub.docker.com/r/itzg/minecraft-server
type: application
version: 0.0.2
annotations:
truecharts.org/catagories: |
- games
truecharts.org/SCALE-support: "true"
truecharts.org/grade: U

View File

@ -0,0 +1,38 @@
# Introduction
Minecraft Bedrock Dedicated Server
TrueCharts are designed to be installed as TrueNAS SCALE app only. We can not guarantee this charts works as a stand-alone helm installation.
**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/apps/issues/new/choose)**
## Source Code
* <https://github.com/itzg/docker-minecraft-server>
* <https://hub.docker.com/r/itzg/minecraft-server>
## Requirements
Kubernetes: `>=1.16.0-0`
## Dependencies
| Repository | Name | Version |
|------------|------|---------|
| https://truecharts.org | common | 8.14.4 |
## Installing the Chart
To install this App on TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/03-Installing-an-App/).
## Uninstalling the Chart
To remove this App from TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/07-Deleting-an-App/).
## Support
- Please check our [quick-start guides](https://truecharts.org/manual/Quick-Start%20Guides/01-Open-Apps/) first.
- See the [Wiki](https://truecharts.org)
- Check our [Discord](https://discord.gg/tVsPTHWTtr)
- Open a [issue](https://github.com/truecharts/apps/issues/new/choose)
---
All Rights Reserved - The TrueCharts Project

View File

@ -0,0 +1,3 @@
Minecraft Bedrock Dedicated Server
This App is supplied by TrueCharts, for more information please visit https://truecharts.org

Binary file not shown.

View File

@ -0,0 +1,53 @@
# Default Helm-Values
TrueCharts is primarily build to supply TrueNAS SCALE Apps.
However, we also supply all Apps as standard Helm-Charts. In this document we aim to document the default values in our values.yaml file.
Most of our Apps also consume our "common" Helm Chart.
If this is the case, this means that all values.yaml values are set to the common chart values.yaml by default. This values.yaml file will only contain values that deviate from the common chart.
You will, however, be able to use all values referenced in the common chart here, besides the values listed in this document.
## Values
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| env.ALLOW_CHEATS | bool | `false` | |
| env.CORRECT_PLAYER_MOVEMENT | bool | `false` | |
| env.DEFAULT_PLAYER_PERMISSION_LEVEL | string | `"member"` | |
| env.DIFFICULTY | string | `"easy"` | |
| env.EULA | string | `"TRUE"` | |
| env.GAMEMODE | string | `"survival"` | |
| env.GID | string | `"{{ .Values.podSecurityContext.fsGroup }}"` | |
| env.LEVEL_NAME | string | `"Bedrock level"` | |
| env.LEVEL_SEED | string | `""` | |
| env.LEVEL_TYPE | string | `"DEFAULT"` | |
| env.MAX_PLAYERS | int | `10` | |
| env.MAX_THREADS | int | `8` | |
| env.ONLINE_MODE | bool | `true` | |
| env.PLAYER_IDLE_TIMEOUT | int | `30` | |
| env.PLAYER_MOVEMENT_DISTANCE_THRESHOLD | float | `0.3` | |
| env.PLAYER_MOVEMENT_DURATION_THRESHOLD_IN_MS | int | `500` | |
| env.PLAYER_MOVEMENT_SCORE_THRESHOLD | int | `20` | |
| env.SERVER_AUTHORITATIVE_MOVEMENT | string | `"server-auth"` | |
| env.SERVER_NAME | string | `"TrueCharts Dedicated Server!"` | |
| env.SERVER_PORT | string | `"{{ .Values.service.main.ports.main.targetPort }}"` | |
| env.SERVER_PORT_V6 | string | `"{{ .Values.service.main.ports.main.targetPort }}"` | |
| env.TEXTUREPACK_REQUIRED | bool | `false` | |
| env.TICK_DISTANCE | int | `4` | |
| env.UID | string | `"{{ .Values.env.PUID }}"` | |
| env.VERSION | string | `"LATEST"` | |
| env.VIEW_DISTANCE | int | `32` | |
| env.WHITE_LIST | bool | `false` | |
| image.pullPolicy | string | `"Always"` | |
| image.repository | string | `"tccr.io/truecharts/minecraft-bedrock"` | |
| image.tag | string | `"2022.1.0@sha256:63fbf9347350871633418621dcf46bde8d36b647ff1c6f24555aa1487bd62698"` | |
| persistence.config.enabled | bool | `true` | |
| persistence.config.mountPath | string | `"/data"` | |
| probes.liveness | object | See below | Liveness probe configuration |
| probes.readiness | object | See below | Redainess probe configuration |
| probes.startup | object | See below | Startup probe configuration |
| service.main.ports.main.port | int | `19132` | |
| service.main.ports.main.protocol | string | `"UDP"` | |
| service.main.ports.main.targetPort | int | `19132` | |
All Rights Reserved - The TrueCharts Project

View File

@ -0,0 +1,62 @@
image:
repository: tccr.io/truecharts/minecraft-bedrock
tag: 2022.1.0@sha256:63fbf9347350871633418621dcf46bde8d36b647ff1c6f24555aa1487bd62698
pullPolicy: Always
env:
UID: "{{ .Values.env.PUID }}"
GID: "{{ .Values.podSecurityContext.fsGroup }}"
EULA: "TRUE"
VERSION: "LATEST"
SERVER_NAME: "TrueCharts Dedicated Server!"
SERVER_PORT: "{{ .Values.service.main.ports.main.targetPort }}"
SERVER_PORT_V6: "{{ .Values.service.main.ports.main.targetPort }}"
GAMEMODE: "survival"
DIFFICULTY: "easy"
LEVEL_TYPE: "DEFAULT"
ALLOW_CHEATS: false
MAX_PLAYERS: 10
ONLINE_MODE: true
WHITE_LIST: false
VIEW_DISTANCE: 32
TICK_DISTANCE: 4
PLAYER_IDLE_TIMEOUT: 30
MAX_THREADS: 8
LEVEL_NAME: "Bedrock level"
LEVEL_SEED: ""
DEFAULT_PLAYER_PERMISSION_LEVEL: "member"
TEXTUREPACK_REQUIRED: false
SERVER_AUTHORITATIVE_MOVEMENT: server-auth
PLAYER_MOVEMENT_SCORE_THRESHOLD: 20
PLAYER_MOVEMENT_DISTANCE_THRESHOLD: 0.3
PLAYER_MOVEMENT_DURATION_THRESHOLD_IN_MS: 500
CORRECT_PLAYER_MOVEMENT: false
persistence:
config:
enabled: true
mountPath: "/data"
service:
main:
ports:
main:
port: 19132
targetPort: 19132
protocol: UDP
probes:
# -- Liveness probe configuration
# @default -- See below
liveness:
enabled: false
# -- Redainess probe configuration
# @default -- See below
readiness:
enabled: false
# -- Startup probe configuration
# @default -- See below
startup:
enabled: false

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{{ include "common.all" . }}

View File

@ -0,0 +1,4 @@
icon_url: https://truecharts.org/_static/img/appicons/minecraft-bedrock-icon.png
categories:
- games