From d60617f00cc6a727e7b52400943965a1c76bc63f Mon Sep 17 00:00:00 2001 From: Mayne0213 Date: Thu, 1 Jan 2026 16:13:42 +0900 Subject: [PATCH] REFACTOR(minio): move minio disk from worker-1 - to master - Change minio-pv-worker1-data2 to minio-pv-mayne-vcn-data2 - Master now has 2 disks, worker-1 has 1 disk - Better distribution: master(2), worker-1(1), worker-2(1) --- minio/helm-values.yaml | 6 +++--- minio/persistent-volumes.yaml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/minio/helm-values.yaml b/minio/helm-values.yaml index cf172af..9621188 100644 --- a/minio/helm-values.yaml +++ b/minio/helm-values.yaml @@ -3,9 +3,9 @@ # Mode: Distributed with Erasure Coding (4 drives total) # # Disk allocation: -# - master node: 1 x 50GB (1 disk for MinIO, 1 for MariaDB) -# - worker-1: 2 x 50GB (2 disks for MinIO) -# - worker-2: 1 x 50GB (1 disk for MinIO) +# - master node: 2 x 50GB (minio-data1, minio-data2) +# - worker-1: 1 x 50GB (minio-data1) +# - worker-2: 1 x 50GB (minio-data1) # Total: 4 drives for erasure coding # Use latest MinIO image diff --git a/minio/persistent-volumes.yaml b/minio/persistent-volumes.yaml index 61b9abc..46e6f1b 100644 --- a/minio/persistent-volumes.yaml +++ b/minio/persistent-volumes.yaml @@ -47,11 +47,11 @@ spec: values: - mayne-worker-1 --- -# PV 3: mayne-worker-1 - /mnt/minio-data2 +# PV 3: mayne-vcn (master) - /mnt/minio-data2 apiVersion: v1 kind: PersistentVolume metadata: - name: minio-pv-worker1-data2 + name: minio-pv-mayne-vcn-data2 spec: capacity: storage: 45Gi @@ -69,7 +69,7 @@ spec: - key: kubernetes.io/hostname operator: In values: - - mayne-worker-1 + - mayne-vcn --- # PV 4: mayne-worker-2 - /mnt/minio-data1 apiVersion: v1