feat(Minecraft): Add password to the server

This commit is contained in:
Nikolai Rodionov 2023-06-18 15:38:43 +02:00
parent d441cdf0dd
commit d809bd5106
No known key found for this signature in database
GPG Key ID: 19DB54039EBF8F10

View File

@ -72,6 +72,18 @@ initContainers:
- name: plugins
mountPath: /data/plugins
readOnly: false
- name: install-password-plugin
image: alpine/curl
command:
- curl
- -L
- "https://github.com/timbru31/PasswordProtect/releases/download/PasswordProtect-3.1.0/PasswordProtect.jar"
- -o
- /data/plugins/PasswordProtect.jar
volumeMounts:
- name: plugins
mountPath: /data/plugins
readOnly: false
extraVolumes:
- volumeMounts:
- name: plugins