fix: Correct order-service container image typo - Issue #47#48
Open
github-actions[bot] wants to merge 1 commit intomainfrom
Open
fix: Correct order-service container image typo - Issue #47#48github-actions[bot] wants to merge 1 commit intomainfrom
github-actions[bot] wants to merge 1 commit intomainfrom
Conversation
- Fixed typo in container image name from 'order-servie' to 'order-service' - Resolves ImagePullBackOff error in order-service pods - Fixes GitHub Issue #47 Root cause: Typo in image name prevented container registry from finding the image Impact: order-service pods stuck in ImagePullBackOff state Fix: Corrected image name on line 196 of broken-aks-store-all-in-one.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🔧 Cluster Doctor Diagnostic Report - Issue #47
Summary
Fixed a critical typo in the
order-servicecontainer image name that was preventing pods from starting.Root Cause Analysis
Problem: The
order-servicedeployment is experiencingImagePullBackOfferrors.Root Cause: Typo in container image name on line 196 of
Act-3/argocd/apps/broken-aks-store-all-in-one.yamlghcr.io/azure-samples/aks-store-demo/order-servie:2.1.0ghcr.io/azure-samples/aks-store-demo/order-service:2.1.0Evidence Collected
Pod Status:
Error Message from kubectl describe:
The 403 error occurs because the image
order-servie(with typo) does not exist in the container registry.Impact
Changes Made
order-servie→order-serviceAct-3/argocd/apps/broken-aks-store-all-in-one.yaml(line 196)Test Plan
kubectl get pods -n default | grep order-servicekubectl logs -n default deployment/order-servicekubectl exec -n default deployment/order-service -- curl http://localhost:3000/healthRollback Plan
If issues arise after merge:
Additional Notes
ghcr.io/azure-samples/aks-store-demo/order-service:2.1.0exists and is publicly accessibleFixes #47
🤖 This PR was automatically created by the Cluster Doctor agent