fix: new CI deploy key + plane-api longer startup timeout
Some checks failed
CI/CD / syntax-check (push) Successful in 1m2s
CI/CD / deploy (push) Failing after 8m13s

- Rotate ci_deploy_pubkey to new ed25519 key (old key lost after
  server rebuild; Forgejo secret SSH_PRIVATE_KEY updated to match)
- Increase plane-api start_period 60s→120s, retries 5→10 to give
  Django time to run DB migrations after backup restore

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
jack 2026-03-27 08:38:51 +07:00
parent 3b875f57d2
commit aa8d5082d3
2 changed files with 3 additions and 3 deletions

View file

@ -55,4 +55,4 @@ ip_main: "87.249.49.32"
ip_tools: "85.193.83.9"
# CI/CD deploy key (public key — not a secret)
ci_deploy_pubkey: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHdr9mRSSUqt7Ym4wA5RpVyz76wEXSOtVfh2/yCSMIbg ci-deploy@forgejo-runner"
ci_deploy_pubkey: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILQSKgqMTT7uGo423Nrb94PgQ8cu2IiH96JOrIKhlvm/ ci-deploy@forgejo-runner"

View file

@ -244,8 +244,8 @@ services:
test: ["CMD", "wget", "-qO-", "http://127.0.0.1:8000/"]
interval: 30s
timeout: 10s
retries: 5
start_period: 60s
retries: 10
start_period: 120s
plane-worker:
image: {{ plane_backend_image }}