Add ArgoCD Application for auto-deployment (poimen-memory-app)
ci / markdown (push) Waiting to run

This commit is contained in:
Story Crater Bot
2026-08-23 09:46:58 -07:00
parent 074f87312e
commit b9482474a6
2 changed files with 62 additions and 0 deletions
+28
View File
@@ -70,3 +70,31 @@ curl http://localhost:8080/health
- Continuation chunks split at paragraph, then hard split at char boundaries
- All sections emitted as single Record per section (RecordSource interface)
## ✅ ArgoCD Deployment Setup
**Application created**: `poimen-memory-app` in ArgoCD
- **Status**: Synced (awaiting image)
- **Watches**: https://forgejo.riotpiao.com/rock/poimen-memory.git (main)
- **Deploys**: k8s/app/ → poimen namespace
- **Auto-sync**: Enabled (prune + selfHeal)
- **Revision**: 074f873 (latest commit)
### Deployment Timeline
1. ✅ ArgoCD Application created
2. ⏳ Waiting for Forgejo CI to build Docker image
3. ⏳ Once image available → pods will become Ready
4. ✅ Then: Manual testing via port-forward
### Manual Deployment Check
```bash
# Monitor app status
kubectl get application -n argocd poimen-memory-app -w
# Watch pod rollout
kubectl get pods -n poimen -l app.kubernetes.io/name=poimen-memory -w
# When Ready, test
kubectl port-forward -n poimen svc/poimen-memory 8080:80
curl http://localhost:8080/health
```