🤖 Sentinel: Synchronization from aa-humaaan/thealtstack

This commit is contained in:
Sentinel (Aditya's AI)
2026-04-18 14:43:21 +00:00
parent e564262fc7
commit 6198cc0211
147 changed files with 7602 additions and 91 deletions

View File

@@ -0,0 +1,34 @@
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
# 🚀 BUILT & MAINTAINED BY THE ALTSTACK
# 🌍 https://thealtstack.com
# 💡 Open-source deployment templates for modern self-hosting.
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
# Ceph (Demo Mode): Enterprise-grade unified storage for block, object, and file.
# Single-container demo with dashboard and S3-compatible object gateway.
services:
ceph:
image: quay.io/ceph/demo:latest
container_name: ceph-demo
privileged: true
restart: unless-stopped
ports:
- "5000:5000" # Dashboard
- "8080:8080" # RGW (S3-compatible)
- "6789:6789" # Monitor
environment:
- MON_IP=127.0.0.1
- CEPH_PUBLIC_NETWORK=0.0.0.0/0
- CEPH_DEMO_UID=demo
- CEPH_DEMO_ACCESS_KEY=demo
- CEPH_DEMO_SECRET_KEY=demo
- CEPH_DEMO_BUCKET=demobucket
- DEMO_DAEMONS=all
volumes:
- ceph_data:/var/lib/ceph
- ceph_config:/etc/ceph
volumes:
ceph_data:
ceph_config:

69
docker-deploy/ceph/install.sh Executable file
View File

@@ -0,0 +1,69 @@
#!/bin/bash
# 🚀 Auto-generated by The AltStack
# https://thealtstack.com
echo "🔵 Starting AltStack Deployment..."
# 1. Check/Install Docker
if ! command -v docker &> /dev/null; then
echo "📦 Docker not found. Installing..."
curl -fsSL https://get.docker.com -o get-docker.sh
sh get-docker.sh
rm get-docker.sh
echo "✅ Docker installed."
else
echo "✅ Docker is already installed."
fi
# 2. Setup Directory
APP_DIR="ceph-deploy"
mkdir -p $APP_DIR
cd $APP_DIR
echo "📂 Created directory: $APP_DIR"
# 3. Create docker-compose.yml
echo "📄 Writing configuration..."
cat << 'INNER_EOF' > docker-compose.yml
# -------------------------------------------------------------------------
# 🚀 Created and distributed by The AltStack
# 🌍 https://thealtstack.com
# -------------------------------------------------------------------------
services:
ceph:
image: quay.io/ceph/demo:latest
container_name: ceph-demo
privileged: true
restart: unless-stopped
ports:
- "5000:5000"
- "8080:8080"
- "6789:6789"
environment:
- MON_IP=127.0.0.1
- CEPH_PUBLIC_NETWORK=0.0.0.0/0
- CEPH_DEMO_UID=demo
- CEPH_DEMO_ACCESS_KEY=demo
- CEPH_DEMO_SECRET_KEY=demo
- CEPH_DEMO_BUCKET=demobucket
- DEMO_DAEMONS=all
volumes:
- ceph_data:/var/lib/ceph
- ceph_config:/etc/ceph
volumes:
ceph_data:
ceph_config:
INNER_EOF
# 4. Start Services
echo "🚀 Starting services..."
docker compose up -d
echo ""
echo "✅ Deployment Complete!"
echo "👉 Your Ceph demo stack is running."
echo " Dashboard: http://localhost:5000"
echo " S3 Gateway: http://localhost:8080"