From ccaba4e70d85f0649c9c1f89163f3fd2e4bf72ea Mon Sep 17 00:00:00 2001 From: Nikolai Rodionov Date: Wed, 11 Oct 2023 19:22:39 +0200 Subject: [PATCH] Some updated to minecraft --- badhouseplants/values/values.minecraft.yaml | 29 ++++++++++++++++++--- 1 file changed, 26 insertions(+), 3 deletions(-) diff --git a/badhouseplants/values/values.minecraft.yaml b/badhouseplants/values/values.minecraft.yaml index 499e54d..de6218a 100644 --- a/badhouseplants/values/values.minecraft.yaml +++ b/badhouseplants/values/values.minecraft.yaml @@ -110,7 +110,7 @@ mcbackup: # -- Install Plugins # --------------------------------------------- initContainers: - - name: install-prometheus-exporter + - name: 0-install-prometheus-exporter image: alpine/curl command: - curl @@ -122,7 +122,7 @@ initContainers: - name: plugins mountPath: /data/plugins readOnly: false - - name: install-password-plugin + - name: 0-install-password-plugin image: alpine/curl command: - curl @@ -134,7 +134,7 @@ initContainers: - name: plugins mountPath: /data/plugins readOnly: false - - name: install-gravity-control-plugin + - name: 0-install-gravity-control-plugin image: alpine/curl command: - curl @@ -146,6 +146,29 @@ initContainers: - name: plugins mountPath: /data/plugins readOnly: false + - name: 0-install-fast-minecart-plugin + image: alpine/curl + command: + - curl + - -L + - https://github.com/certainly1182/FastMinecarts/releases/download/v1.0.1/FastMinecarts.jar + - -o + - /data/plugins/FastMinecarts.jar + volumeMounts: + - name: plugins + mountPath: /data/plugins + - name: 1-add-plugins-to-minecraft + image: alpine/curl + command: + - sh + - -c + - cp -r /in /out/plugins + volumeMounts: + - name: plugins + mountPath: /in + readOnly: false + - name: datadir + mountPath: /out extraVolumes: - volumeMounts: - name: plugins