47fac22230
- .claude/CLAUDE.md - .claude/commands/subagentes.md - .claude/rules/INDEX.md - .mcp.json - bash/functions/cybersecurity/analyze_dns.md - bash/functions/cybersecurity/audit_http_headers.md - bash/functions/cybersecurity/audit_ssh_config.md - bash/functions/cybersecurity/check_firewall.md - bash/functions/cybersecurity/detect_suspicious_users.md - bash/functions/cybersecurity/encrypt_file.md - ... Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
48 lines
1.6 KiB
Markdown
48 lines
1.6 KiB
Markdown
---
|
|
name: deploy_app_remote
|
|
kind: pipeline
|
|
lang: go
|
|
domain: infra
|
|
version: "1.0.0"
|
|
purity: impure
|
|
signature: "func DeployAppRemote(conn SSHConn, cfg DeployConfig) error"
|
|
description: "Orquesta el deploy continuo de una app a un VPS: verifica SSH, compila localmente, sube binario, reinicia systemd y hace health check."
|
|
tags: [deploy, vps, remote, ci, cd, pipeline, infra, pendiente-usar]
|
|
uses_functions: [ssh_check_go_infra, ssh_upload_go_infra, ssh_exec_go_infra, systemd_restart_go_infra, health_check_http_go_infra]
|
|
uses_types: [ssh_conn_go_infra, DeployConfig_go_infra]
|
|
returns: []
|
|
returns_optional: false
|
|
error_type: "error_go_core"
|
|
imports: [fmt, os/exec, strings]
|
|
params:
|
|
- name: conn
|
|
desc: "conexión SSH al VPS destino"
|
|
- name: cfg
|
|
desc: "configuración de deploy con nombre, rutas, build command, puerto y health path"
|
|
output: "nil si el deploy completo fue exitoso"
|
|
tested: false
|
|
tests: []
|
|
test_file_path: ""
|
|
file_path: "functions/infra/deploy_app_remote.go"
|
|
---
|
|
|
|
## Ejemplo
|
|
|
|
```go
|
|
conn := SSHConn{Host: "185.x.x.x", User: "root"}
|
|
cfg := DeployConfig{
|
|
AppName: "dag_engine",
|
|
LocalDir: "apps/dag_engine",
|
|
RemoteDir: "/opt/apps/dag_engine",
|
|
BinaryName: "dag_engine",
|
|
BuildCmd: "CGO_ENABLED=0 GOOS=linux go build -o dag_engine .",
|
|
Port: 8080,
|
|
HealthPath: "/api/health",
|
|
}
|
|
err := DeployAppRemote(conn, cfg)
|
|
```
|
|
|
|
## Notas
|
|
|
|
Pipeline de 5 pasos para deploy continuo (asume que el setup inicial ya se hizo con `setup_vps_app`). El build corre localmente en `LocalDir` con `bash -c BuildCmd`. Si `BuildCmd` está vacío, se salta el build y sube directamente el binario existente.
|