-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(argo-cd): Set TTL on redis-secret-init Job #2861
fix(argo-cd): Set TTL on redis-secret-init Job #2861
Conversation
…anaged by argocd Signed-off-by: Johannes Kleinlercher <[email protected]>
Thanks for your PR. Please address the title formatting, the chart version and changelog (essentially the tick boxes in the description of your PR). I have moved this PR back to draft while you work on it. |
Signed-off-by: Johannes Kleinlercher <[email protected]>
Signed-off-by: Johannes Kleinlercher <[email protected]>
@tico24 I think this PR is ready for a review |
Signed-off-by: Marco Maurer (-Kilchhofer) <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [argo-cd](https://togithub.com/argoproj/argo-helm) | patch | `7.4.0` -> `7.4.1` | --- ### Release Notes <details> <summary>argoproj/argo-helm (argo-cd)</summary> ### [`v7.4.1`](https://togithub.com/argoproj/argo-helm/releases/tag/argo-cd-7.4.1) [Compare Source](https://togithub.com/argoproj/argo-helm/compare/argo-cd-7.4.0...argo-cd-7.4.1) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - fix(argo-cd): Set TTL on redis-secret-init Job by [@​jkleinlercher](https://togithub.com/jkleinlercher) in [https://github.com/argoproj/argo-helm/pull/2861](https://togithub.com/argoproj/argo-helm/pull/2861) #### New Contributors - [@​jkleinlercher](https://togithub.com/jkleinlercher) made their first contribution in [https://github.com/argoproj/argo-helm/pull/2861](https://togithub.com/argoproj/argo-helm/pull/2861) **Full Changelog**: argoproj/argo-helm@argo-cd-7.4.0...argo-cd-7.4.1 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View the [repository job log](https://developer.mend.io/github/broersma-forslund/homelab). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4xOC4xNyIsInVwZGF0ZWRJblZlciI6IjM4LjE4LjE3IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
I'm still facing this issue even on v7.4.1. Attaching Details
controller:
replicas: 1
env:
- name: ARGOCD_K8S_CLIENT_QPS
value: "300"
- name: ARGOCD_SYNC_WAVE_DELAY
value: "30"
resources:
limits:
memory: 3Gi
requests:
cpu: 1
memory: 3Gi
repoServer:
autoscaling:
enabled: true
minReplicas: 1
resources:
requests:
cpu: "100m"
memory: "1Gi"
limits:
memory: "1Gi"
applicationSet:
replicaCount: 1
dex:
enabled: false
server:
autoscaling:
enabled: true
minReplicas: 1
resources:
requests:
cpu: "100m"
memory: "256Mi"
limits:
memory: "512Mi"
redis:
enabled: false
redis-ha:
enabled: true
haproxy:
enabled: true
init:
resources:
requests:
memory: 100Mi
cpu: 10m
limits:
memory: 100Mi
resources:
requests:
memory: 200Mi
cpu: 15m
limits:
memory: 200Mi
redis:
resources:
requests:
memory: 500Mi
cpu: 20m
limits:
memory: 1Gi
sentinel:
resources:
requests:
memory: 20Mi
cpu: 10m
limits:
memory: 20Mi
exporter:
resources:
requests:
memory: 25Mi
cpu: 5m
limits:
memory: 25Mi
init:
resources:
requests:
memory: 25Mi
cpu: 25m
limits:
memory: 25Mi
configs:
secret:
githubSecret: "$github-argocd-webhook:webhook.github.secret"
repositories:
aws-public-ecr:
name: aws-public-ecr
type: helm
url: public.ecr.aws
enableOCI: "true" |
@oponomarov-tu i recommend opening a new github issue and just referencing this one |
Fixes an argocd issue where helm hooks never finish syncing when they have ttlSecondsAfterFinished set to 0. See related argocd issue: argoproj/argo-cd#6880 Suggested workaround as implemented by argocd team: argoproj/argo-helm#2861
set
ttlSecondsAfterFinished
to prevent stuck during sync when managed by argocdshould fix argoproj/argo-cd#6880 (comment)
Checklist: