diff --git a/README.md b/README.md index 31318c8..20ed5fb 100644 --- a/README.md +++ b/README.md @@ -37,8 +37,7 @@ bash <(wget -qO- http://10.10.10.63:3000/LotusGuild/driveAtlas/raw/branch/main/d | Chassis Type | Description | Servers Using It | |-------------|-------------|------------------| -| **10-Bay Hot-swap** | Sliger CX471225 4U 10x 3.5" NAS (with unused 2x 5.25" bays) | compute-storage-01, storage-01 | compute-storage-gpu-01 -| **Spare 10-Bay** | Some random chinese chassis | +| **10-Bay Hot-swap** | Sliger CX471225 4U 10x 3.5" NAS (with unused 2x 5.25" bays) | compute-storage-01, compute-storage-gpu-01, storage-01 | | **Large1 Grid** | Unique 3x5 grid layout (1/1 configuration) | large1 | | **Micro** | Compact 2-drive layout | micro1, monitor-02 | @@ -65,8 +64,9 @@ bash <(wget -qO- http://10.10.10.63:3000/LotusGuild/driveAtlas/raw/branch/main/d - **Status:** Requires PCI path mapping #### compute-storage-gpu-01 -- **Chassis:** Sliger CX471225 4U (spare, not deployed) -- **Status:** Not currently in use +- **Chassis:** Sliger CX471225 4U (10-Bay Hot-swap) +- **Motherboard:** Same as compute-storage-01 +- **Status:** Requires PCI path mapping ## How It Works diff --git a/driveAtlas.sh b/driveAtlas.sh index 2d1993b..30c17b6 100644 --- a/driveAtlas.sh +++ b/driveAtlas.sh @@ -108,31 +108,6 @@ generate_large1_layout() { EOF } -generate_spare_10bay_layout() { - cat << 'EOF' -┌─────────────────────────────────────────────────────────────┐ -│ Spare 10-Bay Chassis │ -│ (Not Currently Deployed) │ -│ │ -│ ┌────────────┐ ┌────────────┐ ┌────────────┐ ┌────────────┐ │ -│ │ 1 │ │ 2 │ │ 3 │ │ 4 │ │ -│ └────────────┘ └────────────┘ └────────────┘ └────────────┘ │ -│ │ -│ ┌────────────┐ ┌────────────┐ ┌────────────┐ ┌────────────┐ │ -│ │ 5 │ │ 6 │ │ 7 │ │ 8 │ │ -│ └────────────┘ └────────────┘ └────────────┘ └────────────┘ │ -│ │ -│ ┌─────────┐ │ -│ │ 9 │ │ -│ └─────────┘ │ -│ ┌─────────┐ │ -│ │ 10 │ │ -│ └─────────┘ │ -│ │ -└─────────────────────────────────────────────────────────────┘ -EOF -} - #------------------------------------------------------------------------------ # Server-Specific Drive Mappings # Maps PCI paths to physical bay numbers for each server @@ -169,7 +144,7 @@ declare -A SERVER_MAPPINGS=( declare -A CHASSIS_TYPES=( ["compute-storage-01"]="10bay" - ["compute-storage-gpu-01"]="spare-10bay" + ["compute-storage-gpu-01"]="10bay" ["storage-01"]="10bay" ["large1"]="large1" ["micro1"]="micro" @@ -230,9 +205,6 @@ case "$CHASSIS_TYPE" in "large1") generate_large1_layout ;; - "spare-10bay") - generate_spare_10bay_layout - ;; "micro") echo "Micro server layout not yet implemented" ;;