Add `core prod` command with full production infrastructure tooling: - `core prod status` — parallel SSH health checks across all hosts, Galera cluster state, Redis sentinel, Docker, LB health - `core prod setup` — Phase 1 foundation: Hetzner topology discovery, managed LB creation, CloudNS DNS record management - `core prod dns` — CloudNS record CRUD with idempotent EnsureRecord - `core prod lb` — Hetzner Cloud LB status and creation - `core prod ssh <host>` — SSH into hosts defined in infra.yaml New packages: - pkg/infra: config parsing, Hetzner Cloud/Robot API, CloudNS DNS API - infra.yaml: declarative production topology (hosts, LB, DNS, SSL, Galera, Redis, containers, S3, CDN, CI/CD, monitoring, backups) Docker: - Dockerfile.app (PHP 8.3-FPM, multi-stage) - Dockerfile.web (Nginx + security headers) - docker-compose.prod.yml (app, web, horizon, scheduler, mcp, redis, galera) Ansible playbooks (runnable via `core deploy ansible`): - galera-deploy.yml, redis-deploy.yml, galera-backup.yml - inventory.yml with all production hosts CI/CD: - .forgejo/workflows/deploy.yml for Forgejo Actions pipeline Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
35 lines
827 B
Go
35 lines
827 B
Go
package prod
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var (
|
|
infraFile string
|
|
)
|
|
|
|
// Cmd is the root prod command.
|
|
var Cmd = &cobra.Command{
|
|
Use: "prod",
|
|
Short: "Production infrastructure management",
|
|
Long: `Manage the Host UK production infrastructure.
|
|
|
|
Commands:
|
|
status Show infrastructure health and connectivity
|
|
setup Phase 1: discover topology, create LB, configure DNS
|
|
dns Manage DNS records via CloudNS
|
|
lb Manage Hetzner load balancer
|
|
ssh SSH into a production host
|
|
|
|
Configuration is read from infra.yaml in the project root.`,
|
|
}
|
|
|
|
func init() {
|
|
Cmd.PersistentFlags().StringVar(&infraFile, "config", "", "Path to infra.yaml (auto-discovered if not set)")
|
|
|
|
Cmd.AddCommand(statusCmd)
|
|
Cmd.AddCommand(setupCmd)
|
|
Cmd.AddCommand(dnsCmd)
|
|
Cmd.AddCommand(lbCmd)
|
|
Cmd.AddCommand(sshCmd)
|
|
}
|