From d809bd5106d20a788aa1f813e09cef363faeaf95 Mon Sep 17 00:00:00 2001 From: Nikolai Rodionov Date: Sun, 18 Jun 2023 15:38:43 +0200 Subject: [PATCH] feat(Minecraft): Add password to the server --- badhouseplants/values/values.minecraft.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/badhouseplants/values/values.minecraft.yaml b/badhouseplants/values/values.minecraft.yaml index 80ffb02..d8a500c 100644 --- a/badhouseplants/values/values.minecraft.yaml +++ b/badhouseplants/values/values.minecraft.yaml @@ -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