2026-08-21 21:24:12 -07:00
|
|
|
# Poimen project collection — manages poimen-memory, poimen-workflows, and poiman
|
|
|
|
|
# Each repo tracks its own main branch (no prod branch). Poiman is the primary
|
|
|
|
|
# orchestrator with k8s/argocd/ containing the AppProject and deployment structure.
|
2026-08-21 20:44:49 -07:00
|
|
|
#
|
2026-08-21 21:24:12 -07:00
|
|
|
# CI: All three repos trigger on main branch pushes (no image builds yet).
|
|
|
|
|
# Future: Add build workflows for poiman once container runtime needs are clear.
|
|
|
|
|
apiVersion: argoproj.io/v1alpha1
|
|
|
|
|
kind: Application
|
|
|
|
|
metadata:
|
|
|
|
|
name: poimen-root
|
|
|
|
|
namespace: argocd
|
|
|
|
|
labels:
|
|
|
|
|
app.kubernetes.io/name: poimen
|
|
|
|
|
app.kubernetes.io/component: orchestrator
|
|
|
|
|
annotations:
|
|
|
|
|
argocd.argoproj.io/sync-wave: "7"
|
|
|
|
|
spec:
|
|
|
|
|
project: homelab
|
2026-08-21 21:25:55 -07:00
|
|
|
source:
|
2026-08-21 21:57:36 -07:00
|
|
|
repoURL: https://forgejo.riotpiao.com/rock/poimen.git
|
2026-08-21 21:25:55 -07:00
|
|
|
targetRevision: main
|
2026-08-21 21:28:18 -07:00
|
|
|
path: k8s/argocd
|
2026-08-21 21:25:55 -07:00
|
|
|
directory:
|
|
|
|
|
recurse: false
|
2026-08-21 21:24:12 -07:00
|
|
|
destination:
|
|
|
|
|
server: https://kubernetes.default.svc
|
|
|
|
|
namespace: poimen
|
|
|
|
|
syncPolicy:
|
|
|
|
|
automated:
|
|
|
|
|
prune: true
|
|
|
|
|
selfHeal: true
|
|
|
|
|
syncOptions:
|
|
|
|
|
- CreateNamespace=true
|
|
|
|
|
retry:
|
|
|
|
|
limit: 5
|
|
|
|
|
backoff:
|
|
|
|
|
duration: 5s
|
|
|
|
|
factor: 2
|
|
|
|
|
maxDuration: 3m
|