Recreates containers from the agent's SQLite registry when podman's database is lost (UID change, podman reset, reboot). For each service with desired_state="running" that doesn't have a running container: - Removes any stale container with the same name - Recreates the container from the stored spec (image, ports, volumes, cmd, network, user, restart policy) - Allocates route ports and injects PORT env vars - Re-registers mc-proxy routes - Provisions TLS certs for L7 routes Does NOT pull images — assumes local cache. Root cause action item from the 2026-04-03 UID incident. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
53 lines
999 B
Go
53 lines
999 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
"os"
|
|
|
|
"git.wntrmute.dev/mc/mcp/internal/agent"
|
|
"git.wntrmute.dev/mc/mcp/internal/config"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var (
|
|
version = "dev"
|
|
cfgPath string
|
|
)
|
|
|
|
func main() {
|
|
root := &cobra.Command{
|
|
Use: "mcp-agent",
|
|
Short: "Metacircular Control Plane agent",
|
|
}
|
|
root.PersistentFlags().StringVarP(&cfgPath, "config", "c", "", "config file path")
|
|
|
|
root.AddCommand(&cobra.Command{
|
|
Use: "version",
|
|
Short: "Print version",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
fmt.Println(version)
|
|
},
|
|
})
|
|
|
|
root.AddCommand(&cobra.Command{
|
|
Use: "server",
|
|
Short: "Start the agent server",
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
cfg, err := config.LoadAgentConfig(cfgPath)
|
|
if err != nil {
|
|
return fmt.Errorf("load config: %w", err)
|
|
}
|
|
return agent.Run(cfg, version)
|
|
},
|
|
})
|
|
|
|
root.AddCommand(snapshotCmd())
|
|
root.AddCommand(recoverCmd())
|
|
|
|
if err := root.Execute(); err != nil {
|
|
log.Fatal(err)
|
|
os.Exit(1)
|
|
}
|
|
}
|