-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: make debug-bungeecord's config templated
- Loading branch information
Showing
1 changed file
with
75 additions
and
74 deletions.
There are no files selected for viewing
149 changes: 75 additions & 74 deletions
149
...fests/seichi-kubernetes/apps/seichi-debug-gateway/bungeecord/bungeecord-config-patch.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,86 +1,87 @@ | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
apiVersion: seichi.click/v1alpha1 | ||
kind: BungeeConfigMapTemplate | ||
metadata: | ||
name: bungeecord-config | ||
data: | ||
config.yml: | | ||
servers: | ||
deb-s1: | ||
address: 192.168.2.122:25561 | ||
restricted: false | ||
motd: '' | ||
deb-s2: | ||
address: 192.168.2.122:25562 | ||
restricted: false | ||
motd: '' | ||
spec: | ||
dataGoTemplate: | ||
config.yml: | | ||
servers: | ||
deb-s1: | ||
address: 192.168.2.122:25561 | ||
restricted: false | ||
motd: '' | ||
deb-s2: | ||
address: 192.168.2.122:25562 | ||
restricted: false | ||
motd: '' | ||
test-one-day-to-reset: | ||
address: mcserver--one-day-to-reset.seichi-debug-minecraft:25565 | ||
restricted: false | ||
motd: '' | ||
test-one-day-to-reset: | ||
address: mcserver--one-day-to-reset.seichi-debug-minecraft:25565 | ||
restricted: false | ||
motd: '' | ||
listeners: | ||
- priorities: | ||
- deb-s1 | ||
forced_hosts: | ||
play-debug.seichi.click: deb-s1 | ||
listeners: | ||
- priorities: | ||
- deb-s1 | ||
forced_hosts: | ||
play-debug.seichi.click: deb-s1 | ||
query_port: 25565 | ||
motd: '' | ||
bind_local_address: true | ||
tab_list: GLOBAL_PING | ||
query_enabled: false | ||
host: 0.0.0.0:25577 | ||
query_port: 25565 | ||
motd: '' | ||
bind_local_address: true | ||
tab_list: GLOBAL_PING | ||
query_enabled: false | ||
host: 0.0.0.0:25577 | ||
max_players: 256 | ||
tab_size: 60 | ||
ping_passthrough: false | ||
force_default_server: true | ||
proxy_protocol: true | ||
max_players: 256 | ||
tab_size: 60 | ||
ping_passthrough: false | ||
force_default_server: true | ||
proxy_protocol: true | ||
# Warning: asterisk cannot be used for permissions setting | ||
permissions: | ||
default: | ||
- bungeecord.command.list | ||
- bungeecord.command.server | ||
- bungeehubcommand.hub | ||
admin: | ||
- bungeecord.command.list | ||
- bungeecord.command.server | ||
- bungeehubcommand.hub | ||
# Warning: asterisk cannot be used for permissions setting | ||
permissions: | ||
default: | ||
- bungeecord.command.list | ||
- bungeecord.command.server | ||
- bungeehubcommand.hub | ||
admin: | ||
- bungeecord.command.list | ||
- bungeecord.command.server | ||
- bungeehubcommand.hub | ||
- bungeecord.command.alert | ||
- bungeecord.command.send | ||
- redisbungee.command.lastseen | ||
- redisbungee.command.sendtoall | ||
- redisbungee.command.serverid | ||
- redisbungee.command.serverids | ||
- redisbungee.command.pproxy | ||
- redisbungee.command.plist | ||
- bungeecord.command.alert | ||
- bungeecord.command.send | ||
- redisbungee.command.lastseen | ||
- redisbungee.command.sendtoall | ||
- redisbungee.command.serverid | ||
- redisbungee.command.serverids | ||
- redisbungee.command.pproxy | ||
- redisbungee.command.plist | ||
groups: | ||
unchama: | ||
- admin | ||
groups: | ||
unchama: | ||
- admin | ||
custom_server_name: HexaCord | ||
player_limit: -1 | ||
online_mode: true | ||
forge_support: false | ||
stats: 752477ce-c5e9-4e37-9361-2d4f26f65f14 | ||
custom_server_name: HexaCord | ||
player_limit: -1 | ||
online_mode: true | ||
forge_support: false | ||
stats: 752477ce-c5e9-4e37-9361-2d4f26f65f14 | ||
ip_forward: true | ||
prevent_proxy_connections: true | ||
always_handle_packets: false | ||
remote_ping_timeout: 5000 | ||
remote_ping_cache: -1 | ||
# The timeout value must be set shorter than the upper network | ||
timeout: 20000 | ||
server_connect_timeout: 5000 | ||
connection_throttle: 2000 | ||
connection_throttle_limit: 16 | ||
network_compression_threshold: 256 | ||
log_pings: false | ||
ip_forward: true | ||
prevent_proxy_connections: true | ||
always_handle_packets: false | ||
remote_ping_timeout: 5000 | ||
remote_ping_cache: -1 | ||
# The timeout value must be set shorter than the upper network | ||
timeout: 20000 | ||
server_connect_timeout: 5000 | ||
connection_throttle: 2000 | ||
connection_throttle_limit: 16 | ||
network_compression_threshold: 256 | ||
log_pings: false | ||
disabled_commands: | ||
log_commands: true | ||
inject_commands: false | ||
disabled_commands: | ||
log_commands: true | ||
inject_commands: false |