Some updated to minecraft

This commit is contained in:
Nikolai Rodionov 2023-10-11 19:22:39 +02:00
parent 89df5ff10c
commit ccaba4e70d
No known key found for this signature in database
GPG Key ID: 19DB54039EBF8F10

View File

@ -110,7 +110,7 @@ mcbackup:
# -- Install Plugins # -- Install Plugins
# --------------------------------------------- # ---------------------------------------------
initContainers: initContainers:
- name: install-prometheus-exporter - name: 0-install-prometheus-exporter
image: alpine/curl image: alpine/curl
command: command:
- curl - curl
@ -122,7 +122,7 @@ initContainers:
- name: plugins - name: plugins
mountPath: /data/plugins mountPath: /data/plugins
readOnly: false readOnly: false
- name: install-password-plugin - name: 0-install-password-plugin
image: alpine/curl image: alpine/curl
command: command:
- curl - curl
@ -134,7 +134,7 @@ initContainers:
- name: plugins - name: plugins
mountPath: /data/plugins mountPath: /data/plugins
readOnly: false readOnly: false
- name: install-gravity-control-plugin - name: 0-install-gravity-control-plugin
image: alpine/curl image: alpine/curl
command: command:
- curl - curl
@ -146,6 +146,29 @@ initContainers:
- name: plugins - name: plugins
mountPath: /data/plugins mountPath: /data/plugins
readOnly: false 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: extraVolumes:
- volumeMounts: - volumeMounts:
- name: plugins - name: plugins