summaryrefslogtreecommitdiff
path: root/f3s/argocd-apps
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-03-28 12:22:00 +0200
committerPaul Buetow <paul@buetow.org>2026-03-28 12:22:00 +0200
commitfe718ba200e0b64efad6478f56fc56103f45a574 (patch)
tree514281dc1238eef1673d494361bd729ae50c97f3 /f3s/argocd-apps
parent9c01cbe09da8d5519ad225760828c4c197845b8d (diff)
pkgrepo: add FreeBSD/OpenBSD package repository service
Serve custom-built FreeBSD and OpenBSD packages via nginx in the k3s cluster. Includes helm chart, ArgoCD app, test artifact build script, and DNS entry via frontends Rexfile. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Diffstat (limited to 'f3s/argocd-apps')
-rw-r--r--f3s/argocd-apps/infra/pkgrepo.yaml28
1 files changed, 28 insertions, 0 deletions
diff --git a/f3s/argocd-apps/infra/pkgrepo.yaml b/f3s/argocd-apps/infra/pkgrepo.yaml
new file mode 100644
index 0000000..12bdb9c
--- /dev/null
+++ b/f3s/argocd-apps/infra/pkgrepo.yaml
@@ -0,0 +1,28 @@
+apiVersion: argoproj.io/v1alpha1
+kind: Application
+metadata:
+ name: pkgrepo
+ namespace: cicd
+ finalizers:
+ - resources-finalizer.argocd.argoproj.io
+spec:
+ project: default
+ source:
+ repoURL: http://git-server.cicd.svc.cluster.local/conf.git
+ targetRevision: master
+ path: f3s/pkgrepo/helm-chart
+ destination:
+ server: https://kubernetes.default.svc
+ namespace: infra
+ syncPolicy:
+ automated:
+ prune: true
+ selfHeal: true
+ syncOptions:
+ - CreateNamespace=false
+ retry:
+ limit: 3
+ backoff:
+ duration: 5s
+ factor: 2
+ maxDuration: 1m