more maps

This commit is contained in:
Nathan Rashleigh 2026-02-10 13:11:37 +11:00
parent 15cd89da06
commit f81db458ab

View File

@ -49,8 +49,27 @@ metadata:
namespace: surf
data:
mapcycle.txt: |
surf_fornax
surf_fortum_fix
surf_anzchamps
surf_andromeda
surf_boreas
surf_deathstar
surf_ebony
surf_fornax
surf_garden
surf_in_space
surf_kepler
surf_kitsune
surf_kitsune2
surf_lt_omnific
surf_pantheon
surf_utopia_njv
surf_nyx
surf_stonks
surf_serenity
surf_tendies
surf_zoomboys
surf_calzone
---
@ -144,11 +163,19 @@ spec:
# MAP DOWNLOADER
# -----------------------------------------------------------------------
apiVersion: v1
kind: Pod
apiVersion: batch/v1
kind: CronJob
metadata:
name: mapsdl
namespace: surf
spec:
schedule: "*/1 * * * *"
concurrencyPolicy: Forbid
successfulJobsHistoryLimit: 1
failedJobsHistoryLimit: 3
jobTemplate:
spec:
template:
spec:
restartPolicy: Never
containers:
@ -167,27 +194,17 @@ spec:
value: "/tmp/mapsdl"
- name: GOOGLE_APPLICATION_CREDENTIALS
value: "/app/credentials/service-account.json"
- name: MAPS_WISHLIST
value: |
surf_anzchamps
surf_boreas
surf_deathstar
surf_ebony
surf_fornax
surf_garden
surf_in_space
surf_kepler
surf_kitsune
surf_kitsune2
surf_lt_omnific
surf_pantheon
surf_utopia_njv
- name: MAPS_LIST_FILE
value: "/cfg/mapcycle.txt"
volumeMounts:
- name: fastdl-maps
mountPath: /maps
- name: credentials
mountPath: /app/credentials
readOnly: true
- name: cfg
mountPath: /cfg
readOnly: true
volumes:
- name: fastdl-maps
persistentVolumeClaim:
@ -195,6 +212,9 @@ spec:
- name: credentials
secret:
secretName: mapsdl-credentials
- name: cfg
configMap:
name: cfg
---