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 namespace: surf
data: data:
mapcycle.txt: | mapcycle.txt: |
surf_fornax surf_fortum_fix
surf_anzchamps
surf_andromeda
surf_boreas 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 # MAP DOWNLOADER
# ----------------------------------------------------------------------- # -----------------------------------------------------------------------
apiVersion: v1 apiVersion: batch/v1
kind: Pod kind: CronJob
metadata: metadata:
name: mapsdl name: mapsdl
namespace: surf namespace: surf
spec:
schedule: "*/1 * * * *"
concurrencyPolicy: Forbid
successfulJobsHistoryLimit: 1
failedJobsHistoryLimit: 3
jobTemplate:
spec:
template:
spec: spec:
restartPolicy: Never restartPolicy: Never
containers: containers:
@ -167,27 +194,17 @@ spec:
value: "/tmp/mapsdl" value: "/tmp/mapsdl"
- name: GOOGLE_APPLICATION_CREDENTIALS - name: GOOGLE_APPLICATION_CREDENTIALS
value: "/app/credentials/service-account.json" value: "/app/credentials/service-account.json"
- name: MAPS_WISHLIST - name: MAPS_LIST_FILE
value: | value: "/cfg/mapcycle.txt"
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
volumeMounts: volumeMounts:
- name: fastdl-maps - name: fastdl-maps
mountPath: /maps mountPath: /maps
- name: credentials - name: credentials
mountPath: /app/credentials mountPath: /app/credentials
readOnly: true readOnly: true
- name: cfg
mountPath: /cfg
readOnly: true
volumes: volumes:
- name: fastdl-maps - name: fastdl-maps
persistentVolumeClaim: persistentVolumeClaim:
@ -195,6 +212,9 @@ spec:
- name: credentials - name: credentials
secret: secret:
secretName: mapsdl-credentials secretName: mapsdl-credentials
- name: cfg
configMap:
name: cfg
--- ---