This commit is contained in:
parent
909f43f838
commit
149087fb03
12
games/minecraft/minecraft-data-pvc.yaml
Normal file
12
games/minecraft/minecraft-data-pvc.yaml
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: PersistentVolumeClaim
|
||||||
|
metadata:
|
||||||
|
name: minecraft-data-pvc
|
||||||
|
namespace: games-ns
|
||||||
|
spec:
|
||||||
|
accessModes:
|
||||||
|
- ReadWriteOnce
|
||||||
|
storageClassName: longhorn
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
storage: 16Gi
|
103
games/minecraft/minecraft-deployment.yaml
Normal file
103
games/minecraft/minecraft-deployment.yaml
Normal file
@ -0,0 +1,103 @@
|
|||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: minecraft
|
||||||
|
namespace: games-ns
|
||||||
|
spec:
|
||||||
|
replicas: 1
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app: games
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: games
|
||||||
|
spec:
|
||||||
|
#initContainers:
|
||||||
|
#- name: modpack-downloader
|
||||||
|
# image: alpine:latest
|
||||||
|
# volumeMounts:
|
||||||
|
# - name: minecraft-modpacks
|
||||||
|
# mountPath: /modpacks
|
||||||
|
# env:
|
||||||
|
# - name: MODPACK_URL
|
||||||
|
# #value: "https://s3.clortox.com/minecraft-modpacks/cf-modpack-latest.zip"
|
||||||
|
# value: "https://s3.clortox.com/minecraft-modpacks/modpack-latest.zip"
|
||||||
|
# command: ["/bin/sh"]
|
||||||
|
# args:
|
||||||
|
# - "-c"
|
||||||
|
# - |
|
||||||
|
# rm -rf /modpacks/*
|
||||||
|
# wget -O /modpacks/modpack.zip "$MODPACK_URL"
|
||||||
|
containers:
|
||||||
|
- name: minecraft
|
||||||
|
image: itzg/minecraft-server:java8-jdk
|
||||||
|
env:
|
||||||
|
- name: EULA
|
||||||
|
value: "TRUE"
|
||||||
|
- name: ENABLE_RCON
|
||||||
|
value: "TRUE"
|
||||||
|
- name: RCON_PORT
|
||||||
|
value: "28016"
|
||||||
|
- name: MEMORY
|
||||||
|
value: "8G"
|
||||||
|
- name: USE_AIKAR_FLAGS
|
||||||
|
value: "false"
|
||||||
|
- name: ENABLE_ROLLING_LOGS
|
||||||
|
value: "false"
|
||||||
|
- name: TZ
|
||||||
|
value: "America/New_York"
|
||||||
|
|
||||||
|
- name: VERSION
|
||||||
|
value: "1.12.2"
|
||||||
|
- name: REMOVE_OLD_MODS
|
||||||
|
value: "TRUE"
|
||||||
|
|
||||||
|
# Proper curseforge pack
|
||||||
|
#- name: TYPE
|
||||||
|
# value: "CURSEFORGE"
|
||||||
|
#- name: CF_SERVER_MOD
|
||||||
|
# value: "/modpacks/modpack.zip"
|
||||||
|
|
||||||
|
# Generic Forge configuration
|
||||||
|
- name: TYPE
|
||||||
|
value: "FORGE"
|
||||||
|
- name: MODPACK
|
||||||
|
value: "https://s3.clortox.com/minecraft-modpacks/modpack-latest.zip"
|
||||||
|
#- name: CUSTOM_SERVER_PROPERTIES
|
||||||
|
# value: |
|
||||||
|
# level-type=EarthCubic
|
||||||
|
# level-name=big-world
|
||||||
|
# view-distance=16
|
||||||
|
# vertical-view-distance=-1
|
||||||
|
|
||||||
|
- name: ICON
|
||||||
|
value: "https://s3.clortox.com/minecraft-modpacks/server-icon.png"
|
||||||
|
- name: OVERRIDE_ICON
|
||||||
|
value: "TRUE"
|
||||||
|
- name: MOTD
|
||||||
|
value: "Lol. Lmao Even."
|
||||||
|
- name: MAX_PLAYERS
|
||||||
|
value: "50"
|
||||||
|
- name: SPAWN_PROTECTION
|
||||||
|
value: "0"
|
||||||
|
- name: DIFFICULTY
|
||||||
|
value: "hard"
|
||||||
|
- name: OPS
|
||||||
|
value: "Gritos_Internos"
|
||||||
|
- name: ALLOW_FLIGHT
|
||||||
|
value: "TRUE"
|
||||||
|
ports:
|
||||||
|
- containerPort: 25565
|
||||||
|
- containerPort: 28016
|
||||||
|
volumeMounts:
|
||||||
|
- name: minecraft-data
|
||||||
|
mountPath: /data
|
||||||
|
- name: minecraft-modpacks
|
||||||
|
mountPath: /modpacks
|
||||||
|
volumes:
|
||||||
|
- name: minecraft-data
|
||||||
|
persistentVolumeClaim:
|
||||||
|
claimName: minecraft-data-pvc
|
||||||
|
- name: minecraft-modpacks
|
||||||
|
emptyDir: {}
|
Loading…
Reference in New Issue
Block a user