Commit 8895a3e
committed
Fix ArgoCD sync failures in broken-aks-store-all-in-one.yaml
Fixes #11
Root cause analysis:
1. Line 178: Invalid apiVersion 'apps/v' - missing version number
2. Line 475: Typo in container image name 'store-dmin' instead of 'store-admin'
Changes:
- Fixed apiVersion from 'apps/v' to 'apps/v1' for order-service Deployment
- Fixed image name from 'store-dmin' to 'store-admin' for store-admin container
These syntax errors prevented ArgoCD from successfully syncing the
application, resulting in 'OutOfSync' status and sync task failures.
Test plan:
- YAML syntax validated with Python yaml parser
- ArgoCD should now be able to parse and sync the manifests
- Verify with: argocd app sync 2-broken-apps
Rollback:
- git revert this commit if issues arise1 parent 765e6b2 commit 8895a3e
1 file changed
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
175 | 175 | | |
176 | 176 | | |
177 | 177 | | |
178 | | - | |
| 178 | + | |
179 | 179 | | |
180 | 180 | | |
181 | 181 | | |
| |||
472 | 472 | | |
473 | 473 | | |
474 | 474 | | |
475 | | - | |
| 475 | + | |
476 | 476 | | |
477 | 477 | | |
478 | 478 | | |
| |||
0 commit comments