Skip to content

Conversation

@github-actions
Copy link

🔧 Fix: Image Name Typo in order-service Deployment

Closes #49

Root Cause

The order-service deployment was failing with ImagePullBackOff due to a typo in the container image name on line 196 of Act-3/argocd/apps/broken-aks-store-all-in-one.yaml.

Incorrect: ghcr.io/azure-samples/aks-store-demo/order-servie:2.1.0
Correct: ghcr.io/azure-samples/aks-store-demo/order-service:2.1.0

Changes Made

  • Fixed image name from order-servie to order-service in the order-service Deployment spec

Impact

  • Resolves ImagePullBackOff error for order-service pods
  • Resolves ArgoCD application Degraded health status
  • Application will sync successfully after merge

Testing & Validation

After merge, ArgoCD will automatically sync the corrected manifest. Verify with:

# Monitor ArgoCD sync
kubectl get application tech-connect-live -n argocd -w

# Check pod status
kubectl get pods -n default -l app=order-service

# Verify all pods are running
kubectl get pods -n default

Expected result: order-service pods should transition to Running state within 1-2 minutes.

Rollback Plan

If issues occur, revert this PR or run:

kubectl rollout undo deployment/order-service -n default

- Corrected 'order-servie' to 'order-service' on line 196
- Resolves ImagePullBackOff error causing ArgoCD deployment failure
- Fixes Issue #49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

🚨 ArgoCD Deployment Failed: tech-connect-live

0 participants