From 2eeb1aa64fd65c6348e730dcab7808b9f9b994d8 Mon Sep 17 00:00:00 2001 From: Cluster Doctor Agent Date: Thu, 12 Feb 2026 00:52:30 +0000 Subject: [PATCH] fix: correct typo in order-service image name The deployment for order-service has been failing with ImagePullBackOff because the image name contained a typo: 'order-servie' instead of 'order-service'. This fix corrects the image name from: ghcr.io/azure-samples/aks-store-demo/order-servie:2.1.0 to: ghcr.io/azure-samples/aks-store-demo/order-service:2.1.0 Root cause: Typo in manifest file Impact: order-service deployment unable to pull container image Resolution: Fix image name to match the actual container registry path Fixes #52 --- 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 2ee349d..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/order-servie:2.1.0 + image: ghcr.io/azure-samples/aks-store-demo/order-service:2.1.0 ports: - containerPort: 3000 envFrom: