mirror of
https://github.com/CloudNebulaProject/barycenter.git
synced 2026-04-10 21:20:41 +00:00
Add comprehensive deployment support for: - Docker: Multi-stage Dockerfile with security hardening - Docker Compose: Production-ready compose file with volume persistence - Kubernetes: Complete Helm chart with configurable values, ingress, PVC - Linux: systemd service unit with extensive security hardening - FreeBSD: rc.d init script with proper daemon management - illumos/Solaris: SMF manifest with service contract management Each platform includes: - Installation scripts/manifests - Configuration examples - Management instructions - Security best practices - Troubleshooting guides The Helm chart provides: - Configurable resources and autoscaling - Security contexts and pod security - Health checks (liveness/readiness probes) - Ingress with TLS support - Persistent volume claims - Service account management All deployments follow security best practices: - Non-root user execution - Minimal privileges - Read-only root filesystems where applicable - Resource limits - Network policies Added DEPLOYMENT.md with comprehensive deployment guide covering all platforms, configuration options, and production checklist. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
45 lines
333 B
Text
45 lines
333 B
Text
# Git
|
|
.git/
|
|
.gitignore
|
|
.github/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Rust
|
|
target/
|
|
Cargo.lock
|
|
|
|
# Build artifacts
|
|
*.db
|
|
*.db-shm
|
|
*.db-wal
|
|
|
|
# Data directories
|
|
data/
|
|
crabidp.db
|
|
|
|
# Documentation
|
|
README.md
|
|
CONTRIBUTING.md
|
|
CLAUDE.md
|
|
docs/
|
|
|
|
# Tests
|
|
tests/
|
|
|
|
# CI/CD
|
|
.github/
|
|
|
|
# Config
|
|
.config/
|
|
.claude/
|
|
|
|
# Temporary files
|
|
tmp/
|
|
*.tmp
|
|
*.log
|