Some checks failed
API CI / API Lint (push) Successful in 47s
API CI / API Type Check (push) Failing after 47s
API CI / API Test (push) Successful in 1m0s
API CI / API Build (push) Failing after 50s
API CI / Build Docker Image (push) Has been skipped
Build Crossplane Provider / build (push) Failing after 5m51s
CD Pipeline / Deploy to Staging (push) Failing after 29s
CI Pipeline / Lint and Type Check (push) Failing after 36s
CI Pipeline / Build (push) Has been skipped
CI Pipeline / Test Backend (push) Failing after 1m33s
CI Pipeline / Test Frontend (push) Failing after 30s
CI Pipeline / Security Scan (push) Failing after 1m16s
Crossplane Provider CI / Go Test (push) Failing after 3m23s
Crossplane Provider CI / Go Lint (push) Failing after 7m27s
Crossplane Provider CI / Go Build (push) Failing after 3m27s
Deploy to Staging / Deploy to Staging (push) Failing after 30s
Portal CI / Portal Lint (push) Failing after 21s
Portal CI / Portal Type Check (push) Failing after 21s
Portal CI / Portal Test (push) Failing after 21s
Portal CI / Portal Build (push) Failing after 22s
Test Suite / frontend-tests (push) Failing after 30s
Test Suite / api-tests (push) Failing after 49s
Test Suite / blockchain-tests (push) Failing after 30s
Type Check / type-check (map[directory:. name:root]) (push) Failing after 23s
Type Check / type-check (map[directory:api name:api]) (push) Failing after 21s
Type Check / type-check (map[directory:portal name:portal]) (push) Failing after 19s
Validate Configuration Files / validate (push) Failing after 1m52s
CD Pipeline / Deploy to Production (push) Has been skipped
Co-authored-by: Cursor <cursoragent@cursor.com>
73 lines
1.2 KiB
Markdown
73 lines
1.2 KiB
Markdown
# Quick Start: Ceph Setup on Fresh Proxmox Install
|
|
|
|
## Run These Commands
|
|
|
|
### On ML110-01 (192.168.11.10)
|
|
|
|
```bash
|
|
# 1. Install Ceph
|
|
apt-get update
|
|
apt-get install -y ceph ceph-common ceph-base
|
|
|
|
# 2. Initialize cluster
|
|
pveceph init --network 192.168.11.0/24 --cluster-network 192.168.11.0/24
|
|
|
|
# 3. Create monitor
|
|
pveceph mon create
|
|
|
|
# 4. Verify
|
|
ceph quorum_status
|
|
```
|
|
|
|
### On R630-01 (192.168.11.11)
|
|
|
|
```bash
|
|
# 1. Install Ceph
|
|
apt-get update
|
|
apt-get install -y ceph ceph-common ceph-base
|
|
|
|
# 2. Create monitor
|
|
pveceph mon create
|
|
|
|
# 3. Verify quorum
|
|
sleep 10
|
|
ceph quorum_status
|
|
```
|
|
|
|
### Create OSDs on R630-01
|
|
|
|
```bash
|
|
# Create OSDs on 6x 250GB drives
|
|
for disk in sdc sdd sde sdf sdg sdh; do
|
|
ceph-volume lvm create --data /dev/$disk
|
|
sleep 2
|
|
done
|
|
|
|
# Verify
|
|
ceph osd tree
|
|
ceph -s
|
|
```
|
|
|
|
### Create Storage Pools
|
|
|
|
```bash
|
|
# RBD pool for VM disks
|
|
ceph osd pool create rbd 32 32
|
|
ceph osd pool application enable rbd rbd
|
|
rbd pool init rbd
|
|
|
|
# CephFS for shared storage
|
|
ceph osd pool create cephfs_data 32 32
|
|
ceph osd pool create cephfs_metadata 16 16
|
|
ceph fs new ceph-fs cephfs_metadata cephfs_data
|
|
```
|
|
|
|
## Verify Everything
|
|
|
|
```bash
|
|
ceph -s
|
|
ceph osd tree
|
|
ceph health detail
|
|
```
|
|
|