24 lines
584 B
JSON
24 lines
584 B
JSON
|
|
{
|
||
|
|
"name": "Sovereign Deployment",
|
||
|
|
"description": "Deterministic deployment pipeline for Foundation services",
|
||
|
|
"steps": [
|
||
|
|
{
|
||
|
|
"name": "Validate Config",
|
||
|
|
"command": "python3 scripts/config_validator.py"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"name": "Run Architecture Linter",
|
||
|
|
"command": "python3 scripts/architecture_linter_v2.py"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"name": "Execute Deployment Script",
|
||
|
|
"command": "bash deploy.sh",
|
||
|
|
"continue_on_failure": false
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"name": "Post-Deployment Health Check",
|
||
|
|
"command": "python3 scripts/self_healing.py"
|
||
|
|
}
|
||
|
|
]
|
||
|
|
}
|