diff options
| author | Paul Buetow <paul@buetow.org> | 2026-01-15 21:01:35 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-01-15 21:01:43 +0200 |
| commit | 8e0cf186a1e1dba042e4dd4eb6727889d2b22bbd (patch) | |
| tree | 5f1c70195961a5bbf3cc8765f8cec87ae474f2f7 /f3s/argocd-apps | |
| parent | 617a9f741bad57640e06f03b67b8ea2983c5904e (diff) | |
feat: add Argo Rollouts controller and tracing-demo canary rollout demo
Diffstat (limited to 'f3s/argocd-apps')
| -rw-r--r-- | f3s/argocd-apps/cicd/argo-rollouts.yaml | 28 | ||||
| -rw-r--r-- | f3s/argocd-apps/services/tracing-demo.yaml | 2 |
2 files changed, 30 insertions, 0 deletions
diff --git a/f3s/argocd-apps/cicd/argo-rollouts.yaml b/f3s/argocd-apps/cicd/argo-rollouts.yaml new file mode 100644 index 0000000..4437bee --- /dev/null +++ b/f3s/argocd-apps/cicd/argo-rollouts.yaml @@ -0,0 +1,28 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: argo-rollouts + 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/argo-rollouts + destination: + server: https://kubernetes.default.svc + namespace: cicd + syncPolicy: + automated: + prune: true + selfHeal: true + syncOptions: + - CreateNamespace=true + retry: + limit: 3 + backoff: + duration: 5s + factor: 2 + maxDuration: 1m diff --git a/f3s/argocd-apps/services/tracing-demo.yaml b/f3s/argocd-apps/services/tracing-demo.yaml index 61a0a9c..c9283a6 100644 --- a/f3s/argocd-apps/services/tracing-demo.yaml +++ b/f3s/argocd-apps/services/tracing-demo.yaml @@ -20,6 +20,8 @@ spec: selfHeal: true syncOptions: - CreateNamespace=false + # Ignore old Deployment resources (using Rollout instead) + - RespectIgnoreDifferences=true retry: limit: 3 backoff: |
