From a0d97583c4a185775d4c6eae6b8ca14e8de880b1 Mon Sep 17 00:00:00 2001 From: Ashwin Kumar Sivakumar Date: Sun, 19 Jul 2026 00:30:27 +0530 Subject: [PATCH] ci: retrigger isolated employees rebuild (bad digest from concurrent push) The 20-service matrix push for 8a29b81 landed a digest in gitops for employees that doesn't exist in the registry (ImagePullBackOff, confirmed via kubectl - same failure mode documented in 512eb72/ea622a4). This commit only touches apps/employees/ so the CI path-filter rebuilds just that one service in isolation, avoiding the concurrent-push contention. Co-Authored-By: Claude Sonnet 5 --- apps/employees/src/handlers/auth.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/employees/src/handlers/auth.rs b/apps/employees/src/handlers/auth.rs index f186832..8b736ed 100644 --- a/apps/employees/src/handlers/auth.rs +++ b/apps/employees/src/handlers/auth.rs @@ -14,6 +14,10 @@ use serde::{Deserialize, Serialize}; use contracts::auth_middleware::AuthUser; use crate::AppState; +// Retrigger: force an isolated single-service rebuild of `employees` — the +// prior concurrent 20-service push (8a29b81) landed a digest in gitops that +// the registry doesn't actually have (same failure mode as the earlier +// documented incident in 512eb72/ea622a4). pub fn router() -> Router { // Includes forgot-password / reset-password against EmployeeRepository. Router::new()