-
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
docs(argocd-image-updater): adding google artifact registry to the list #2349
docs(argocd-image-updater): adding google artifact registry to the list #2349
Conversation
This reverts commit b02b2fb. Signed-off-by: Kripu Khadka <khadkakripu4@gmail.com>
…ngs (argoproj#2270) Signed-off-by: yu-croco <yu.croco@gmail.com> Signed-off-by: Kripu Khadka <khadkakripu4@gmail.com>
…ional (argoproj#2273) * fix: add argocd servicemonitor annotations conditionally Signed-off-by: Mats Willemsen <mats.willemsen@ah.nl> * chore(argo-cd): add changelog Signed-off-by: Mats Willemsen <mats.willemsen@ah.nl> --------- Signed-off-by: Mats Willemsen <mats.willemsen@ah.nl> Signed-off-by: Kripu Khadka <khadkakripu4@gmail.com>
…ations (argoproj#2275) Add checksum for CMP ConfigMap in repo-server This helm chart defines the plugins as ConfigMaps -- according to the docs, when the CM is modified, the repo-server Pod must be restarted to have the sidecars pick up the latest changes: https://argo-cd.readthedocs.io/en/stable/operator-manual/config-management-plugins/#debugging-a-cmp The changes in this helm chart allow for a checksum to be calculated from the ConfigMap and added as a Pod annotation so whenever the CM values are modified, the Pod is restarted automatically. Signed-off-by: sibucan <luis.ramirez.rivera92@gmail.com> Signed-off-by: Kripu Khadka <khadkakripu4@gmail.com>
* Redis to 7.0.13 Signed-off-by: Pieter van der Giessen <pieter@pionative.com> * changelog Signed-off-by: Pieter van der Giessen <pieter@pionative.com> --------- Signed-off-by: Pieter van der Giessen <pieter@pionative.com> Signed-off-by: Kripu Khadka <khadkakripu4@gmail.com>
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.0.0 to 4.1.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@3df4ab1...8ade135) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Signed-off-by: Kripu Khadka <khadkakripu4@gmail.com>
….3.0 (argoproj#2284) Signed-off-by: Kripu Khadka <khadkakripu4@gmail.com>
…#2290) Signed-off-by: Kripu Khadka <khadkakripu4@gmail.com>
…2289) Signed-off-by: Kripu Khadka <khadkakripu4@gmail.com>
…eam (argoproj#2294) Signed-off-by: Marco Maurer <mkilchhofer@users.noreply.github.com> Signed-off-by: Kripu Khadka <khadkakripu4@gmail.com>
…j#2291) Signed-off-by: Kripu Khadka <khadkakripu4@gmail.com>
Diff based on the rc1 branch currently here [3.4.10...3.5.0](argoproj/argo-workflows@v3.4.10...v3.5.0) Signed-off-by: jmeridth <jmeridth@gmail.com> Signed-off-by: Kripu Khadka <khadkakripu4@gmail.com>
Signed-off-by: Kripu Khadka <khadkakripu4@gmail.com>
…oj#2301) fix: add all crds to aggregate-roles Signed-off-by: Jonathan Raymond <jonwraymond@gmail.com> Signed-off-by: Kripu Khadka <khadkakripu4@gmail.com>
Signed-off-by: Kripu Khadka <khadkakripu4@gmail.com>
….yaml (argoproj#2307) Signed-off-by: yu-croco <yu.croco@gmail.com> Signed-off-by: Kripu Khadka <khadkakripu4@gmail.com>
…2297) * feat(argo-workflows): Updated supported workers parameters Change ------ Based on argo-workflows [scaling documents](https://argoproj.github.io/argo-workflows/scaling/) it's possible to set following workers values: `--workflow-workers`, `--workflow-ttl-workers`, `--pod-cleanup-workers` and statring 3.5 `--cron-workflow-workers`. This change allows chart consumers to take advatage of _all_ these parameters. Testing ------- ``` helm upgrade argowf charts/argo-workflows -n argo --values charts/argo-workflows/values.yaml --create-namespace --debug | grep -A70 "Source: argo-workflows/templates/controller/workflow-controller-deployment.yaml" | grep workers helm upgrade argowf charts/argo-workflows -n argo --values charts/argo-workflows/values.yaml --create-namespace --debug | grep -A70 "Source: argo-workflows/templates/controller/workflow-controller-deployment.yaml" | grep -A1 workers - "--workflow-workers" - "10" helm upgrade argowf charts/argo-workflows -n argo --values charts/argo-workflows/values.yaml --create-namespace --debug | grep -A70 "Source: argo-workflows/templates/controller/workflow-controller-deployment.yaml" | grep -A1 workers - "--workflow-workers" - "10" - "--workflow-ttl-workers" - "20" helm upgrade argowf charts/argo-workflows -n argo --values charts/argo-workflows/values.yaml --create-namespace --debug | grep -A70 "Source: argo-workflows/templates/controller/workflow-controller-deployment.yaml" | grep -A1 workers - "--workflow-workers" - "10" - "--workflow-ttl-workers" - "20" - "--pod-cleanup-workers" - "30" helm upgrade argowf charts/argo-workflows -n argo --values charts/argo-workflows/values.yaml --create-namespace --debug | grep -A70 "Source: argo-workflows/templates/controller/workflow-controller-deployment.yaml" | grep -A1 workers - "--workflow-workers" - "10" - "--workflow-ttl-workers" - "20" - "--pod-cleanup-workers" - "30" - "--cron-workflow-workers" - "40" ``` Signed-off-by: Evgeny Khatko <owen.tko@gmail.com> Signed-off-by: Evgeny Khatko <ekhatko@paypal.com> * Addressing PR feedback. Signed-off-by: Evgeny Khatko <ekhatko@paypal.com> * newline Signed-off-by: Tim Collins <45351296+tico24@users.noreply.github.com> * Update Chart.yaml Signed-off-by: Tim Collins <45351296+tico24@users.noreply.github.com> * Update Chart.yaml Signed-off-by: Tim Collins <45351296+tico24@users.noreply.github.com> --------- Signed-off-by: Evgeny Khatko <owen.tko@gmail.com> Signed-off-by: Evgeny Khatko <ekhatko@paypal.com> Signed-off-by: Tim Collins <45351296+tico24@users.noreply.github.com> Co-authored-by: Evgeny Khatko <ekhatko@paypal.com> Co-authored-by: Tim Collins <45351296+tico24@users.noreply.github.com> Signed-off-by: Kripu Khadka <khadkakripu4@gmail.com>
Signed-off-by: Kripu Khadka <khadkakripu4@gmail.com>
Signed-off-by: toyamagu-2021 <toyamagu2021@gmail.com> Signed-off-by: Kripu Khadka <khadkakripu4@gmail.com>
Signed-off-by: Kripu Khadka <khadkakripu4@gmail.com>
…#2314) Signed-off-by: Kripu Khadka <khadkakripu4@gmail.com>
Signed-off-by: Petr Drastil <petr.drastil@gmail.com> Signed-off-by: Kripu Khadka <khadkakripu4@gmail.com>
* Add notification cluster role Signed-off-by: drfaust92 <ilia.lazebnik@gmail.com> * Add notification cluster role Signed-off-by: drfaust92 <ilia.lazebnik@gmail.com> * Add notification cluster role Signed-off-by: drfaust92 <ilia.lazebnik@gmail.com> * Add notification cluster role Signed-off-by: drfaust92 <ilia.lazebnik@gmail.com> --------- Signed-off-by: drfaust92 <ilia.lazebnik@gmail.com> Signed-off-by: Kripu Khadka <khadkakripu4@gmail.com>
Signed-off-by: Kripu Khadka <khadkakripu4@gmail.com>
* Bump rollouts to 1.6.2 Signed-off-by: drfaust92 <ilia.lazebnik@gmail.com> * Bump to 1.6.1 Signed-off-by: drfaust92 <ilia.lazebnik@gmail.com> * Bump to 1.6.1 Signed-off-by: drfaust92 <ilia.lazebnik@gmail.com> --------- Signed-off-by: drfaust92 <ilia.lazebnik@gmail.com> Co-authored-by: Aikawa <yu.croco@gmail.com> Signed-off-by: Kripu Khadka <khadkakripu4@gmail.com>
Signed-off-by: Kripu Khadka <khadkakripu4@gmail.com>
…nd emptyDir volumes (argoproj#2346) Signed-off-by: Kripu Khadka <khadkakripu4@gmail.com>
* fix(argo-workflows): Aligne version label Signed-off-by: yu-croco <yu.croco@gmail.com> * fix(argo-workflows): fix typo Signed-off-by: yu-croco <yu.croco@gmail.com> --------- Signed-off-by: yu-croco <yu.croco@gmail.com> Signed-off-by: Kripu Khadka <khadkakripu4@gmail.com>
* typo fix Signed-off-by: Kripu Khadka <khadkakripu4@gmail.com> * Revert "typo fix" This reverts commit b02b2fb. Signed-off-by: Kripu Khadka <khadkakripu4@gmail.com> * typo fix in SECURITY.md Signed-off-by: Kripu Khadka <84505567+Kripu77@users.noreply.github.com> Signed-off-by: Kripu Khadka <khadkakripu4@gmail.com> --------- Signed-off-by: Kripu Khadka <khadkakripu4@gmail.com> Signed-off-by: Kripu Khadka <84505567+Kripu77@users.noreply.github.com> Co-authored-by: Aikawa <yu.croco@gmail.com> Signed-off-by: Kripu Khadka <khadkakripu4@gmail.com>
Signed-off-by: Kripu Khadka <khadkakripu4@gmail.com>
735b30f
to
b8b548d
Compare
Hi @Kripu77 , it looks that this PR has a lot of unnecessary diffs. 👀 |
Main branch just needed to be merged in. It looks much less horrifying now! |
The latest version of the referenced documentation does not mention Google Artifcact Registry though: https://argocd-image-updater.readthedocs.io/en/latest/configuration/registries/ |
Hi @Kripu77 , can you give us the official info that argocd-image-updater supports
|
This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Checklist: