From f5539568d91c526a92292e3f47198ffbdbfd3c54 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 11 Mar 2026 19:38:49 +0000 Subject: [PATCH] fix: correct order-service image name typo causing ImagePullBackOff Fixes #27 - ArgoCD deployment degraded due to ImagePullBackOff on cluster msftgbb (resource group: agentic-platform-engineering). The container image name had a typo ('orde-service' instead of 'order-service'), causing ghcr.io to return 403 Forbidden during anonymous token fetch, resulting in ImagePullBackOff. Before: ghcr.io/azure-samples/aks-store-demo/orde-service:2.1.0 After: ghcr.io/azure-samples/aks-store-demo/order-service:2.1.0 Evidence: Failed to pull image: failed to authorize: failed to fetch anonymous token: unexpected status from GET request to ghcr.io: 403 Forbidden 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 2e477e5..fd9cb17 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 @@ -194,7 +194,7 @@ spec: "kubernetes.io/os": linux containers: - name: order-service - image: ghcr.io/azure-samples/aks-store-demo/orde-service:2.1.0 + image: ghcr.io/azure-samples/aks-store-demo/order-service:2.1.0 ports: - containerPort: 3000 envFrom: