hashbang / gitops

gitops repo for our kubernetes cluster
23 stars 8 forks source link

argocd: update quay.io/argoproj/argocd Docker tag to v2.6.6 #130

Closed renovate[bot] closed 1 year ago

renovate[bot] commented 1 year ago

Mend Renovate

This PR contains the following updates:

Package Type Update Change
quay.io/argoproj/argocd Kustomization patch v2.6.4 -> v2.6.6

Release Notes

argoproj/argo-cd ### [`v2.6.6`](https://togithub.com/argoproj/argo-cd/releases/tag/v2.6.6) [Compare Source](https://togithub.com/argoproj/argo-cd/compare/v2.6.5...v2.6.6) #### Quick Start ##### Non-HA: ```shell kubectl create namespace argocd kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/v2.6.6/manifests/install.yaml ``` ##### HA: ```shell kubectl create namespace argocd kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/v2.6.6/manifests/ha/install.yaml ``` #### Release signatures All Argo CD container images and CLI binaries are signed by cosign. See the [documentation](https://argo-cd.readthedocs.io/en/stable/operator-manual/signed-release-assets/) on how to verify the signatures. ```shell -----BEGIN PUBLIC KEY----- MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEesHEB7vX5Y2RxXypjMy1nI1z7iRG JI9/gt/sYqzpsa65aaNP4npM43DDxoIy/MQBo9s/mxGxmA+8UXeDpVC9vw== -----END PUBLIC KEY----- ``` #### Upgrading If upgrading from a different minor version, be sure to read the [upgrading](https://argo-cd.readthedocs.io/en/stable/operator-manual/upgrading/overview/) documentation. #### Changes This release includes 12 contributions from 4 contributors with 0 features and 3 bug fixes. ##### Bug fixes (3) - fix(appset): git files generator in matrix generator produces no params ([#​12881](https://togithub.com/argoproj/argo-cd/issues/12881)) ([#​12882](https://togithub.com/argoproj/argo-cd/issues/12882)) - fix: log plugin commands in a better format ([#​12260](https://togithub.com/argoproj/argo-cd/issues/12260)) ([#​12875](https://togithub.com/argoproj/argo-cd/issues/12875)) - fix: support 'project' filter field for backwards-compatibility ([#​12594](https://togithub.com/argoproj/argo-cd/issues/12594)) ##### Documentation (4) - docs: fix version numbers in upgrade notes ([#​12896](https://togithub.com/argoproj/argo-cd/issues/12896)) - docs: cleanup HA operator manual ([#​10409](https://togithub.com/argoproj/argo-cd/issues/10409)) ([#​12867](https://togithub.com/argoproj/argo-cd/issues/12867)) - docs: fix list formatting in keycloak.md ([#​11061](https://togithub.com/argoproj/argo-cd/issues/11061)) ([#​12864](https://togithub.com/argoproj/argo-cd/issues/12864)) - docs: Post Selector moved to Generators section ([#​11109](https://togithub.com/argoproj/argo-cd/issues/11109)) ([#​12858](https://togithub.com/argoproj/argo-cd/issues/12858)) ##### Other (5) - chore(deps): bump actions/setup-go from 3.5.0 to 4.0.0 ([#​12888](https://togithub.com/argoproj/argo-cd/issues/12888)) - chore(deps): bump actions/checkout from 3.3.0 to 3.4.0 ([#​12889](https://togithub.com/argoproj/argo-cd/issues/12889)) - build: Enable CI checks on PRs to release branches ([#​12887](https://togithub.com/argoproj/argo-cd/issues/12887)) - test: wait longer after repo server restarted to avoid errors on s390x ([#​12839](https://togithub.com/argoproj/argo-cd/issues/12839)) ([#​12886](https://togithub.com/argoproj/argo-cd/issues/12886)) - chore(deps): bump actions/cache from 3.2.6 to 3.3.1 ([#​12845](https://togithub.com/argoproj/argo-cd/issues/12845)) ### [`v2.6.5`](https://togithub.com/argoproj/argo-cd/releases/tag/v2.6.5) [Compare Source](https://togithub.com/argoproj/argo-cd/compare/v2.6.4...v2.6.5) #### Quick Start ##### Non-HA: ```shell kubectl create namespace argocd kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/v2.6.5/manifests/install.yaml ``` ##### HA: ```shell kubectl create namespace argocd kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/v2.6.5/manifests/ha/install.yaml ``` #### Release signatures All Argo CD container images and CLI binaries are signed by cosign. See the [documentation](https://argo-cd.readthedocs.io/en/stable/operator-manual/signed-release-assets/) on how to verify the signatures. ```shell -----BEGIN PUBLIC KEY----- MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEesHEB7vX5Y2RxXypjMy1nI1z7iRG JI9/gt/sYqzpsa65aaNP4npM43DDxoIy/MQBo9s/mxGxmA+8UXeDpVC9vw== -----END PUBLIC KEY----- ``` #### Upgrading If upgrading from a different minor version, be sure to read the [upgrading](https://argo-cd.readthedocs.io/en/stable/operator-manual/upgrading/overview/) documentation. #### Known Issues ##### Broken matrix-nested git files generator in 2.6.5 Argo CD 2.5.14 introduced a bug in the matrix-nested git files generator. The bug only applies when the git files generator is the second generator nested under a matrix. For example: ```yaml apiVersion: argoproj.io/v1alpha1 kind: ApplicationSet metadata: name: guestbook spec: generators: - matrix: generators: - clusters: {} - git: repoURL: https://git.example.com/org/repo.git revision: HEAD files: - path: "defaults/*.yaml" template: ### ... ``` The nested git files generator will produce no parameters, causing the matrix generator to also produce no parameters. This will cause the ApplicationSet to produce no Applications. If the ApplicationSet controller is [configured with the ability to delete applications](https://argo-cd.readthedocs.io/en/latest/operator-manual/applicationset/Controlling-Resource-Modification/), it will delete all Applications which were previously created by the ApplicationSet. To avoid this issue, upgrade directly to >=2.5.15 or >= 2.6.6. #### Changes This release includes 6 contributions from 2 contributors with 0 features and 3 bug fixes. ##### Bug fixes (3) - fix: ignore gitlab projects w/o repository ([#​12819](https://togithub.com/argoproj/argo-cd/issues/12819)) ([#​12820](https://togithub.com/argoproj/argo-cd/issues/12820)) ([#​12827](https://togithub.com/argoproj/argo-cd/issues/12827)) - fix: use field-wise templating for child matrix generators ([#​11661](https://togithub.com/argoproj/argo-cd/issues/11661)) ([#​12287](https://togithub.com/argoproj/argo-cd/issues/12287)) ([#​12771](https://togithub.com/argoproj/argo-cd/issues/12771)) - fix: Fix the applicationset kind typo ([#​12690](https://togithub.com/argoproj/argo-cd/issues/12690)) ([#​12767](https://togithub.com/argoproj/argo-cd/issues/12767)) ##### Documentation (2) - docs: Provide example RBAC for API server in apps-in-any-namespace ([#​12341](https://togithub.com/argoproj/argo-cd/issues/12341)) ([#​12824](https://togithub.com/argoproj/argo-cd/issues/12824)) - docs: Fix Jenkins guide link in understand_the_basics.md ([#​12814](https://togithub.com/argoproj/argo-cd/issues/12814)) ([#​12818](https://togithub.com/argoproj/argo-cd/issues/12818)) ##### Other (1) - chore: upgrade https lib to avoid CVE-2022-41723

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.



This PR has been generated by Mend Renovate. View repository job log here.