From 04cff2eeda7b14adee02b5f9fa3d911c7105580d Mon Sep 17 00:00:00 2001 From: Nathan Rashleigh Date: Mon, 9 Feb 2026 18:15:20 +1100 Subject: [PATCH] yuhj --- surf/megastructure-surf.yaml | 28 +++------------------------- 1 file changed, 3 insertions(+), 25 deletions(-) diff --git a/surf/megastructure-surf.yaml b/surf/megastructure-surf.yaml index ad4a799..285c487 100755 --- a/surf/megastructure-surf.yaml +++ b/surf/megastructure-surf.yaml @@ -18,27 +18,12 @@ metadata: name: cssds-data namespace: surf spec: - storageClassName: zfs-fast + storageClassName: fast accessModes: - ReadWriteOnce resources: requests: - storage: 10Gi - ---- - -kind: PersistentVolumeClaim -apiVersion: v1 -metadata: - name: tf2ds-data - namespace: surf -spec: - storageClassName: zfs-fast - accessModes: - - ReadWriteOnce - resources: - requests: - storage: 20Gi + storage: 50Gi --- @@ -64,12 +49,10 @@ spec: initContainers: - name: fix-permissions image: busybox - command: ['sh', '-c', 'chown -R 1000:1000 /home/steam/cssds /home/steam/tf2ds'] + command: ['sh', '-c', 'chown -R 1000:1000 /home/steam/cssds'] volumeMounts: - name: cssds mountPath: /home/steam/cssds - - name: tf2ds - mountPath: /home/steam/tf2ds containers: - name: megastructure-surf image: registry.ntwl.xyz/megastructure-surf @@ -84,15 +67,10 @@ spec: volumeMounts: - name: cssds mountPath: /home/steam/cssds - - name: tf2ds - mountPath: /home/steam/tf2ds volumes: - name: cssds persistentVolumeClaim: claimName: cssds-data - - name: tf2ds - persistentVolumeClaim: - claimName: tf2ds-data ---