From 9aa8b58c684d9ca9ede5dc481c97c0dc0a04c4ff Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 24 Feb 2026 17:45:52 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20correct=20order-service=20image=20name?= =?UTF-8?q?=20typo=20(ordr-service=20=E2=86=92=20order-service)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes typo introduced in commit e5c5ea5. The order-service container image was incorrectly set to 'ordr-service:2.1.0' (missing 'e'). This caused the order-service deployment to fail pulling the non-existent image, leaving the new pod stuck in Init:0/1 (waiting for RabbitMQ while using wrong image). Fixes: #17 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- Act-3/argocd/apps/broken-aks-store-all-in-one.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Act-3/argocd/apps/broken-aks-store-all-in-one.yaml b/Act-3/argocd/apps/broken-aks-store-all-in-one.yaml index e2c10c1..0caf86d 100644 --- a/Act-3/argocd/apps/broken-aks-store-all-in-one.yaml +++ b/Act-3/argocd/apps/broken-aks-store-all-in-one.yaml @@ -193,7 +193,7 @@ spec: "kubernetes.io/os": linux containers: - name: order-service - image: ghcr.io/azure-samples/aks-store-demo/ordr-service:2.1.0 + image: ghcr.io/azure-samples/aks-store-demo/order-service:2.1.0 ports: - containerPort: 3000 envFrom: