fix: remove br tags from mermaid diagram (GitHub compat) [ci skip]
This commit is contained in:
parent
f658b18a50
commit
dfad89ef81
1 changed files with 13 additions and 13 deletions
|
|
@ -8,24 +8,24 @@ Automated incident response pipeline that handles the full lifecycle: detection
|
||||||
|
|
||||||
```mermaid
|
```mermaid
|
||||||
graph TD
|
graph TD
|
||||||
A[Incident Detected] --> B[Interactive Mitigation<br/>Claude Code CLI]
|
A[Incident Detected] --> B[Interactive Mitigation]
|
||||||
B --> C{Cluster Healthy?}
|
B --> C{Cluster Healthy?}
|
||||||
C -->|No| B
|
C -->|No| B
|
||||||
C -->|Yes| D[/post-mortem skill<br/>generates markdown]
|
C -->|Yes| D[post-mortem skill]
|
||||||
D --> E[git push to<br/>docs/post-mortems/*.md]
|
D --> E[git push post-mortem]
|
||||||
E --> F[GitHub Webhook]
|
E --> F[GitHub Webhook]
|
||||||
F --> G[Woodpecker Pipeline<br/>postmortem-todos.yml]
|
F --> G[Woodpecker Pipeline]
|
||||||
G --> H[parse-postmortem-todos.sh<br/>Extract safe TODOs]
|
G --> H[Parse safe TODOs]
|
||||||
H --> I{Safe TODOs?}
|
H --> I{Safe TODOs?}
|
||||||
I -->|None| J[Slack: No auto-implementable TODOs]
|
I -->|None| J[Slack: nothing to do]
|
||||||
I -->|Found| K[Vault Auth<br/>K8s SA JWT]
|
I -->|Found| K[Vault Auth via K8s SA]
|
||||||
K --> L[Fetch SSH Key<br/>secret/ci/infra]
|
K --> L[Fetch SSH Key]
|
||||||
L --> M[SSH to DevVM<br/>10.0.10.10]
|
L --> M[SSH to DevVM]
|
||||||
M --> N[Claude Code Headless<br/>postmortem-todo-resolver agent]
|
M --> N[Claude Code Headless Agent]
|
||||||
N --> O[Implement TODOs<br/>Terraform plan/apply]
|
N --> O[Terraform plan + apply]
|
||||||
O --> P[Update Post-Mortem<br/>Follow-up Table]
|
O --> P[Update Post-Mortem]
|
||||||
P --> Q[git push]
|
P --> Q[git push]
|
||||||
Q --> R[GHA: Deploy to<br/>GitHub Pages]
|
Q --> R[GHA: GitHub Pages]
|
||||||
Q --> S[Slack Notification]
|
Q --> S[Slack Notification]
|
||||||
|
|
||||||
style B fill:#6366f1
|
style B fill:#6366f1
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue