123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- {{- define "minecraft.workload" -}}
- workload:
- minecraft:
- enabled: true
- primary: true
- type: Deployment
- podSpec:
- hostNetwork: {{ .Values.mcNetwork.hostNetwork }}
- securityContext:
- fsGroup: {{ .Values.mcID.group }}
- containers:
- minecraft:
- enabled: true
- primary: true
- tty: true
- stdin: true
- imageSelector: {{ .Values.mcConfig.imageSelector }}
- securityContext:
- runAsUser: 0
- runAsGroup: 0
- readOnlyRootFilesystem: false
- runAsNonRoot: false
- capabilities:
- add:
- - CHOWN
- - DAC_OVERRIDE
- - FOWNER
- - SETUID
- - SETGID
- fixedEnv:
- PUID: {{ .Values.mcID.user }}
- envFrom:
- - configMapRef:
- name: minecraft-config
- {{ with .Values.mcConfig.additionalEnvs }}
- envList:
- {{ range $env := . }}
- - name: {{ $env.name }}
- value: {{ $env.value }}
- {{ end }}
- {{ end }}
- probes:
- liveness:
- enabled: true
- type: exec
- command: mc-health
- readiness:
- enabled: true
- type: exec
- command: mc-health
- startup:
- enabled: true
- type: exec
- command: mc-health
- initialDelaySeconds: 120
- {{/* Service */}}
- service:
- minecraft:
- enabled: true
- primary: true
- type: NodePort
- targetSelector: minecraft
- ports:
- server:
- enabled: true
- primary: true
- port: {{ .Values.mcNetwork.serverPort }}
- nodePort: {{ .Values.mcNetwork.serverPort }}
- targetSelector: minecraft
- rcon:
- enabled: {{ .Values.mcConfig.enableRcon }}
- port: {{ .Values.mcNetwork.rconPort }}
- nodePort: {{ .Values.mcNetwork.rconPort }}
- targetSelector: minecraft
- {{/* Persistence */}}
- persistence:
- data:
- enabled: true
- type: {{ .Values.mcStorage.data.type }}
- datasetName: {{ .Values.mcStorage.data.datasetName | default "" }}
- hostPath: {{ .Values.mcStorage.data.hostPath | default "" }}
- targetSelector:
- minecraft:
- minecraft:
- mountPath: /data
- {{- range $idx, $storage := .Values.mcStorage.additionalStorages }}
- {{ printf "mc-%v" (int $idx) }}:
- {{- $size := "" -}}
- {{- if $storage.size -}}
- {{- $size = (printf "%vGi" $storage.size) -}}
- {{- end }}
- enabled: true
- type: {{ $storage.type }}
- datasetName: {{ $storage.datasetName | default "" }}
- hostPath: {{ $storage.hostPath | default "" }}
- server: {{ $storage.server | default "" }}
- share: {{ $storage.share | default "" }}
- domain: {{ $storage.domain | default "" }}
- username: {{ $storage.username | default "" }}
- password: {{ $storage.password | default "" }}
- size: {{ $size }}
- {{- if eq $storage.type "smb-pv-pvc" }}
- mountOptions:
- - key: noperm
- {{- end }}
- targetSelector:
- minecraft:
- minecraft:
- mountPath: {{ $storage.mountPath }}
- {{- end }}
- {{- end -}}
|