Skip to content
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

chore(ci): run ci checks conditionally #16982

Merged

Conversation

blakepettersson
Copy link
Member

@blakepettersson blakepettersson commented Jan 24, 2024

This should prevent docs changes from having the need to run e2e tests etc, and prevent backend changes from needing to run ui tests, and vice versa.

This is similar to previous attempts (see #16706 and #13507), with the difference here that we add the if checks on each step rather than each job - the reason being that most of these jobs are required, and if we skip whole jobs any PR which does this will be left hanging indefinitely, so Github forces us to do this on a step level instead a composite job is added which checks the aggregated status of the matrix jobs, any of which can either be skipped, passed or failed. If they are skipped or passed, the composite job passes, otherwise it's marked as failed.

Once this is merged, a maintainer will need to switch the required check to the composite job for this to work.

Checklist:

  • Either (a) I've created an enhancement proposal and discussed it with the community, (b) this is a bug fix, or (c) this does not need to be in the release notes.
  • The title of the PR states what changed and the related issues number (used for the release note).
  • The title of the PR conforms to the Toolchain Guide
  • I've included "Closes [ISSUE #]" or "Fixes [ISSUE #]" in the description to automatically close the associated issue.
  • I've updated both the CLI and UI to expose my feature, or I plan to submit a second PR with them.
  • Does this PR require documentation updates?
  • I've updated documentation as required by this PR.
  • I have signed off all my commits as required by DCO
  • I have written unit and/or e2e tests for my change. PRs without these are unlikely to be merged.
  • My build is green (troubleshooting builds).
  • My new feature complies with the feature status guidelines.
  • I have added a brief description of why this PR is necessary and/or what this PR solves.
  • Optional. My organization is added to USERS.md.
  • Optional. For bug fixes, I've indicated what older releases this fix should be cherry-picked into (this may or may not happen depending on risk/complexity).

This should prevent docs changes from having the need to run e2e tests
etc, and prevent backend changes from needing to run ui tests, and vice
versa.

This is similar to previous attempts (see argoproj#16706 and argoproj#13507), with the
difference here that we add the if checks on each _step_ rather than
each _job_ - the reason being that most of these jobs are required, and
if we skip whole jobs any PR which does this will be left hanging
indefinitely, so Github forces us to do this on a step level instead.

Signed-off-by: Blake Pettersson <[email protected]>
Copy link
Member

@terrytangyuan terrytangyuan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sounds great. We’ve taken a similar approach for Workflows as well

@agilgur5
Copy link
Member

agilgur5 commented Jan 25, 2024

I commented on Slack too; as Terry said I had a PR for Workflows for this a couple months ago: argoproj/argo-workflows#12006

All the step-level ifs get pretty verbose and are easy to miss accidentally (or screw up if you need multiple conditions), so in my PR I used job-level skips and then for the E2E matrix added an aggregate check that is used as the required CI check on GitHub. See the PR for more implementation details on that.

Overall I think the skips have been a huge boon as lots of PRs no longer run all E2E tests, for instance, which means flakey tests don't affect them and the CI finishes much faster.
When it comes to possible misses in the changed file list, for an active contributor, it was easy to spot when a file was missing since you expect a job to run and then it doesn't -- first miss I found was in argoproj/argo-workflows#12557 last week and it took months for me to find something (i.e. the initial list was very accurate)

@todaywasawesome
Copy link
Contributor

@blakepettersson According to the Github docs, if a job is skipped, it won't be required.

If status checks are required for a repository, the required status checks must pass before you can merge your branch into the protected branch. For more information, see "About protected branches."

Note: A job that is skipped will report its status as "Success". It will not prevent a pull request from merging, even if it is a required check.

https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/about-status-checks

So as long as we skip the jobs, they shouldn't block merging.

@blakepettersson
Copy link
Member Author

@blakepettersson According to the Github docs, if a job is skipped, it won't be required.

If status checks are required for a repository, the required status checks must pass before you can merge your branch into the protected branch. For more information, see "About protected branches."

Note: A job that is skipped will report its status as "Success". It will not prevent a pull request from merging, even if it is a required check.

https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/about-status-checks

So as long as we skip the jobs, they shouldn't block merging.

@todaywasawesome it doesn't seem to be the case with c37ed7d 😞

Screenshot 2024-01-26 at 17 54 06

This is a workaround for the e2e tests which do not run yet report `pending` when they are actually skipped.

Signed-off-by: Blake Pettersson <[email protected]>
@blakepettersson
Copy link
Member Author

@todaywasawesome it seems like the tests which never completes are only the matrix tests - but the solution with @agilgur5 has seems to do the trick, assuming we modify the Required check to be set on test-e2e-composite-result rather than the test-e2e matrix tests (someone with at least @approvers-ci access would need to work their magic though, since I don't have that prerequisite access)

@agilgur5
Copy link
Member

it seems like the tests which never completes are only the matrix tests

yea indeed matrices are an exception. In my PR, I referenced issues actions/runner#952 and https://github.com/orgs/community/discussions/9141 and the workaround from https://github.com/orgs/community/discussions/9141#discussioncomment-2296809 and https://github.com/orgs/community/discussions/26822#discussioncomment-3305794.

also jobs that depend on skipped jobs can have gotchas as well, which is why I modified needs in my PR of some jobs that were not strictly dependent (but rather may fail if another failed).

(someone with at least @approvers-ci access would need to work their magic though, since I don't have that prerequisite access)

confirming that is one of the requirements as well. I had to ask Terry to change the checks for Workflows since I didn't/don't have that access either.

also noting that due to the new checks, some PRs will also have to be rebased as well in order to run the new jobs. PRs with checks already passing I believe are fine, but any future runs will require those.
I figure that is particularly worth mentioning given CD's PR backlog -- it will cause some churn for folks to be aware of.

@blakepettersson blakepettersson marked this pull request as ready for review February 1, 2024 16:45
@blakepettersson blakepettersson requested review from a team as code owners February 1, 2024 16:45
Copy link
Member

@gdsoumya gdsoumya left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

Copy link
Member

@ishitasequeira ishitasequeira left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks great. LGTM!!

@ishitasequeira ishitasequeira enabled auto-merge (squash) February 2, 2024 02:50
@blakepettersson
Copy link
Member Author

@ishitasequeira (or @rbreeze or some other maintainer) - for this to be able to be merged we need to remove the required checks on the E2E test checks. Once this PR has been merged we'd then need to set the test-e2e-composite-result to required, which will become the new required check instead.

Copy link
Member

@ishitasequeira ishitasequeira left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@blakepettersson , unfortunately I do not seem to have permissions to update the setting. Most likely someone with owner permissions might be able to update that.

@alexmt can you help with updating the setting?

@ishitasequeira ishitasequeira merged commit 228eda5 into argoproj:master Feb 6, 2024
23 checks passed
blakepettersson added a commit to blakepettersson/argo-cd that referenced this pull request Feb 6, 2024
Related to argoproj#16982. In order for the steps to properly run, we need to
set `needs: changes` on them.

Signed-off-by: Blake Pettersson <[email protected]>
blakepettersson added a commit to blakepettersson/argo-cd that referenced this pull request Feb 6, 2024
Related to argoproj#16982. In order for the steps to properly run, we need to
set `needs: changes` on them.

Signed-off-by: Blake Pettersson <[email protected]>
JulienFuix pushed a commit to JulienFuix/argo-cd that referenced this pull request Feb 12, 2024
* chore(ci): run ci checks conditionally

This should prevent docs changes from having the need to run e2e tests
etc, and prevent backend changes from needing to run ui tests, and vice
versa.

This is similar to previous attempts (see argoproj#16706 and argoproj#13507), with the
difference here that we add the if checks on each _step_ rather than
each _job_ - the reason being that most of these jobs are required, and
if we skip whole jobs any PR which does this will be left hanging
indefinitely, so Github forces us to do this on a step level instead.

Signed-off-by: Blake Pettersson <[email protected]>

* chore(ci): run ci checks conditionally

Try conditional jobs, according to https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/troubleshooting-required-status-checks#handling-skipped-but-required-checks

Signed-off-by: Blake Pettersson <[email protected]>

* chore(ci): add composite test-e2e action

This is a workaround for the e2e tests which do not run yet report `pending` when they are actually skipped.

Signed-off-by: Blake Pettersson <[email protected]>

---------

Signed-off-by: Blake Pettersson <[email protected]>
Co-authored-by: Remington Breeze <[email protected]>
Co-authored-by: Ishita Sequeira <[email protected]>
clement-heetch pushed a commit to clement-heetch/argo-cd that referenced this pull request Feb 12, 2024
* chore(ci): run ci checks conditionally

This should prevent docs changes from having the need to run e2e tests
etc, and prevent backend changes from needing to run ui tests, and vice
versa.

This is similar to previous attempts (see argoproj#16706 and argoproj#13507), with the
difference here that we add the if checks on each _step_ rather than
each _job_ - the reason being that most of these jobs are required, and
if we skip whole jobs any PR which does this will be left hanging
indefinitely, so Github forces us to do this on a step level instead.

Signed-off-by: Blake Pettersson <[email protected]>

* chore(ci): run ci checks conditionally

Try conditional jobs, according to https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/troubleshooting-required-status-checks#handling-skipped-but-required-checks

Signed-off-by: Blake Pettersson <[email protected]>

* chore(ci): add composite test-e2e action

This is a workaround for the e2e tests which do not run yet report `pending` when they are actually skipped.

Signed-off-by: Blake Pettersson <[email protected]>

---------

Signed-off-by: Blake Pettersson <[email protected]>
Co-authored-by: Remington Breeze <[email protected]>
Co-authored-by: Ishita Sequeira <[email protected]>
adriananeci pushed a commit to adriananeci/argo-cd that referenced this pull request Feb 25, 2024
* chore(ci): run ci checks conditionally

This should prevent docs changes from having the need to run e2e tests
etc, and prevent backend changes from needing to run ui tests, and vice
versa.

This is similar to previous attempts (see argoproj#16706 and argoproj#13507), with the
difference here that we add the if checks on each _step_ rather than
each _job_ - the reason being that most of these jobs are required, and
if we skip whole jobs any PR which does this will be left hanging
indefinitely, so Github forces us to do this on a step level instead.

Signed-off-by: Blake Pettersson <[email protected]>

* chore(ci): run ci checks conditionally

Try conditional jobs, according to https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/troubleshooting-required-status-checks#handling-skipped-but-required-checks

Signed-off-by: Blake Pettersson <[email protected]>

* chore(ci): add composite test-e2e action

This is a workaround for the e2e tests which do not run yet report `pending` when they are actually skipped.

Signed-off-by: Blake Pettersson <[email protected]>

---------

Signed-off-by: Blake Pettersson <[email protected]>
Co-authored-by: Remington Breeze <[email protected]>
Co-authored-by: Ishita Sequeira <[email protected]>
Signed-off-by: Adrian Aneci <[email protected]>
penglongli pushed a commit to penglongli/argo-cd that referenced this pull request Mar 6, 2024
* chore(ci): run ci checks conditionally

This should prevent docs changes from having the need to run e2e tests
etc, and prevent backend changes from needing to run ui tests, and vice
versa.

This is similar to previous attempts (see argoproj#16706 and argoproj#13507), with the
difference here that we add the if checks on each _step_ rather than
each _job_ - the reason being that most of these jobs are required, and
if we skip whole jobs any PR which does this will be left hanging
indefinitely, so Github forces us to do this on a step level instead.

Signed-off-by: Blake Pettersson <[email protected]>

* chore(ci): run ci checks conditionally

Try conditional jobs, according to https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/troubleshooting-required-status-checks#handling-skipped-but-required-checks

Signed-off-by: Blake Pettersson <[email protected]>

* chore(ci): add composite test-e2e action

This is a workaround for the e2e tests which do not run yet report `pending` when they are actually skipped.

Signed-off-by: Blake Pettersson <[email protected]>

---------

Signed-off-by: Blake Pettersson <[email protected]>
Co-authored-by: Remington Breeze <[email protected]>
Co-authored-by: Ishita Sequeira <[email protected]>
Signed-off-by: penglongli <[email protected]>
lyda pushed a commit to lyda/argo-cd that referenced this pull request Mar 28, 2024
* chore(ci): run ci checks conditionally

This should prevent docs changes from having the need to run e2e tests
etc, and prevent backend changes from needing to run ui tests, and vice
versa.

This is similar to previous attempts (see argoproj#16706 and argoproj#13507), with the
difference here that we add the if checks on each _step_ rather than
each _job_ - the reason being that most of these jobs are required, and
if we skip whole jobs any PR which does this will be left hanging
indefinitely, so Github forces us to do this on a step level instead.

Signed-off-by: Blake Pettersson <[email protected]>

* chore(ci): run ci checks conditionally

Try conditional jobs, according to https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/troubleshooting-required-status-checks#handling-skipped-but-required-checks

Signed-off-by: Blake Pettersson <[email protected]>

* chore(ci): add composite test-e2e action

This is a workaround for the e2e tests which do not run yet report `pending` when they are actually skipped.

Signed-off-by: Blake Pettersson <[email protected]>

---------

Signed-off-by: Blake Pettersson <[email protected]>
Co-authored-by: Remington Breeze <[email protected]>
Co-authored-by: Ishita Sequeira <[email protected]>
Signed-off-by: Kevin Lyda <[email protected]>
NagendraOpsmx added a commit to OpsMx/argo-cd that referenced this pull request Apr 2, 2024
* docs: Update signed-release-assets.md (#16755)

Missing \ in example

Signed-off-by: mfreeman451 <[email protected]>

* Document restarting argocd after modifying argocd-cm (#12405)

Signed-off-by: Lie Ryan <[email protected]>
Co-authored-by: Blake Pettersson <[email protected]>

* fix: support specifying username/password for redis holding manifests in argocd-server (#16786)

Signed-off-by: Alexander Matyushentsev <[email protected]>

* fix: add list permission deployments (#16785)

* add list permissions for deployments to application controller

Signed-off-by: ishitasequeira <[email protected]>

* revert redis-ha chart changes

Signed-off-by: ishitasequeira <[email protected]>

* revert redis-ha chart changes

Signed-off-by: ishitasequeira <[email protected]>

---------

Signed-off-by: ishitasequeira <[email protected]>

* chore(manifests): add ClsuterRole/ClusterRoleBinding for applicationset controller. (#16699)

Closes https://github.com/argoproj/argo-cd/issues/16698.

Signed-off-by: mugioka <[email protected]>

* Added socks5 proxy support for ssh based git URL, upgraded go-git to 5.10.1 (#15864)

Signed-off-by: Anand Francis Joseph <[email protected]>

* Added Openkruise workload integration health check scripts (#16238)

Signed-off-by: Mahesh <[email protected]>
Co-authored-by: Ishita Sequeira <[email protected]>

* fix: allow to run codegen outside GOPATH (#16511)

* fix: allow to run codegen outside GOPATH

Signed-off-by: Alexandre Gaudreault <[email protected]>

* clientgen

Signed-off-by: Alexandre Gaudreault <[email protected]>

* openapigen

Signed-off-by: Alexandre Gaudreault <[email protected]>

* remove ensure-gopath

Signed-off-by: Alexandre Gaudreault <[email protected]>

---------

Signed-off-by: Alexandre Gaudreault <[email protected]>

* fix: Use the cache for sharding (#15237)

* feat(sharding): use a cache

Signed-off-by: Alexandre Gaudreault <[email protected]>

* cluster cmd

Signed-off-by: Alexandre Gaudreault <[email protected]>

* - Assign shard 0 to in-cluster cluster and nil check updates
- Caching clusters while sharding: Fixing unit tests
- Update generated docs
- Debug e2e tests
- Default the shardNumber to the number of replicas if it is calculated to a higher value
- defered Unlock only when a lock is set
- Disabling temporarly other versions of k3s to check if e2e passes
- Do not fail if hostname format is not abc-n
- Fix unit test and skip some e2e
- Skip TestGitSubmoduleHTTPSSupport test
- Remove breaking defer c.lock.Unlock()
- Reverting testing all k3s version
- Default sharding fix
Signed-off-by: Akram Ben Aissi <[email protected]>

Signed-off-by: Akram Ben Aissi <[email protected]>

* fixes related to code review: renaming structure param, moving db initialisation

Signed-off-by: Akram Ben Aissi <[email protected]>

* Code review

Signed-off-by: Akram Ben Aissi <[email protected]>

* Set default shard to 0

Signed-off-by: Akram Ben Aissi <[email protected]>

* Set different default value for Sts and Deployment mode

Signed-off-by: Akram Ben Aissi <[email protected]>

* Expose ClusterShardingCache

Signed-off-by: Akram Ben Aissi <[email protected]>

* Removing use of argoDB.db for DistributionFunction

Signed-off-by: Akram Ben Aissi <[email protected]>

* Update generated documentation

Signed-off-by: Akram Ben Aissi <[email protected]>

* Fix comment about NoShardingDistributionFunction and NoShardingAlgorithm

Signed-off-by: Akram Ben Aissi <[email protected]>

---------

Signed-off-by: Alexandre Gaudreault <[email protected]>
Signed-off-by: Akram Ben Aissi <[email protected]>
Co-authored-by: Alexandre Gaudreault <[email protected]>

* fix(manifests): applicationset-controller dir is not added to cluster-rbac/kustomization.yaml. (#16810)

* fix(manifests): applicationset-controller dir is not added to cluster-rbac/kustomization.yaml.

Related PR: https://github.com/argoproj/argo-cd/pull/16699.

I missed adding a new folder(applicationset-controller) to kustomization.yaml.

So, i addressed it.

Signed-off-by: mugioka <[email protected]>

* chore: exec `make manifests`.

Signed-off-by: mugioka <[email protected]>

* chore: exec `make manifests`.

Signed-off-by: mugioka <[email protected]>

---------

Signed-off-by: mugioka <[email protected]>

* typo in comment (#16834)

Signed-off-by: eddimull <[email protected]>

* feat: adding option to specify an aws profile to use by the argocd-server when adding a EKS cluster (#16767)

useful for argocd-servers which are not running in AWS and want to add multiple EKS clusters using
separate keys instead of assuming roles

#16766

Signed-off-by: Isaac Gaskin <[email protected]>
Co-authored-by: Soumya Ghosh Dastidar <[email protected]>

* fix: enforce content type header for API requests (#16860)

Signed-off-by: Alexander Matyushentsev <[email protected]>

* adding tests for githandlers (#16678)

Signed-off-by: zhaque44 <[email protected]>

* fix: added logging if repo credentials collide (#16833)

Signed-off-by: doxsch <[email protected]>

* fix(cli): add support for Application in any namespace for app wait (argoproj#16812) (#16816)

Use fully qualified application names in ApplicationWaitCommand

Closes: #16812

Signed-off-by: Sergiy Kulanov <[email protected]>

* docs: Add LinkedIn badge to README.md (#16889)

Signed-off-by: Yuan Tang <[email protected]>

* update follow-redirects to 1.15.5 (#16899)

Signed-off-by: Regina Scott <[email protected]>

* chore: allow @approvers-docs to approve readme.md (#16897)

Signed-off-by: Blake Pettersson <[email protected]>

* Adding CNCF blog to readme file (#16893)

Signed-off-by: Chetan Deshmukh <[email protected]>

* docs: Update Azure AD to Entra ID (#16869)

* Update Azure AD to Entra ID

https://learn.microsoft.com/en-us/entra/fundamentals/new-name

Signed-off-by: Ryan Flynn <[email protected]>

* Add formerly known as azuread

Signed-off-by: Ryan Flynn <[email protected]>

---------

Signed-off-by: Ryan Flynn <[email protected]>

* chore: Preventing runnings jobs when updating documentation (#16706)

* Preventing runnings jobs when updating documentation

Signed-off-by: Aymen Ben Tanfous <[email protected]>

* Empty line added to .md file

Signed-off-by: Aymen Ben Tanfous <[email protected]>

---------

Signed-off-by: Aymen Ben Tanfous <[email protected]>
Co-authored-by: Aymen Ben Tanfous <[email protected]>

* chore(deps): bump github.com/go-git/go-git/v5 from 5.8.1 to 5.11.0 (#16711)

Bumps [github.com/go-git/go-git/v5](https://github.com/go-git/go-git) from 5.8.1 to 5.11.0.
- [Release notes](https://github.com/go-git/go-git/releases)
- [Commits](https://github.com/go-git/go-git/compare/v5.8.1...v5.11.0)

---
updated-dependencies:
- dependency-name: github.com/go-git/go-git/v5
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* fix(cli): add support for Application in any namespace for `app delete` cmd (#16898)

Use fully qualified application names when operate with Applications

Closes: #16896

Signed-off-by: Sergiy Kulanov <[email protected]>

* docs: Fixed Slugify doc in  GoTemplate.md (#16685)

* docs: Fixed Slugify doc in  GoTemplate.md

Signed-off-by: Aymen Ben Tanfous <[email protected]>

* Update docs/operator-manual/applicationset/GoTemplate.md

Co-authored-by: Blake Pettersson <[email protected]>
Signed-off-by: Aymen Ben Tanfous <[email protected]>

* Update docs/operator-manual/applicationset/GoTemplate.md

Co-authored-by: Blake Pettersson <[email protected]>
Signed-off-by: Aymen Ben Tanfous <[email protected]>

---------

Signed-off-by: Aymen Ben Tanfous <[email protected]>
Co-authored-by: Blake Pettersson <[email protected]>

* Initialize & send forceHttpBasicAuth & enableOCI params correctly during repo update from UI (#16794)

* feat(health): support for distribution aws.crossplane.io resource (#16827)

Signed-off-by: nueavv <[email protected]>

* fix(ui): set content-type for certain UI requests (#16923) (#16930)

Signed-off-by: Michael Crenshaw <[email protected]>

* feat(controller): add sync jitter(#14241) (#16820)

* feat(controller): add sync jitter

Signed-off-by: Alexandre Gaudreault <[email protected]>

* convert to duration for simplicity

Signed-off-by: Alexandre Gaudreault <[email protected]>

* docs

Signed-off-by: Alexandre Gaudreault <[email protected]>

* add config to manifests

Signed-off-by: Alexandre Gaudreault <[email protected]>

* fix tests

Signed-off-by: Alexandre Gaudreault <[email protected]>

---------

Signed-off-by: Alexandre Gaudreault <[email protected]>

* fix(action): Add validation for Kustomize Build Options white space (#16704)

Signed-off-by: Sergey Lanzman <[email protected]>

* Revert "chore: Preventing runnings jobs when updating documentation (#16706)" (#16943)

This reverts commit 65869a3860c7555b3ea7a962db44cc9b05f7e333.

Signed-off-by: Blake Pettersson <[email protected]>

* feat: Add PITS Globale Datenrettungsdienste to user list (#16765)

* Add PITS Globale Datenrettungsdienste to user list

Signed-off-by: Arnold <[email protected]>

* Update USERS.md

Signed-off-by: Arnold <[email protected]>

---------

Signed-off-by: Arnold <[email protected]>
Co-authored-by: Soumya Ghosh Dastidar <[email protected]>

* separate application controller roles into a separate manifests directory (#16884)

Signed-off-by: ishitasequeira <[email protected]>

* fix(ui): fix display banner when not explicit set position (#16741)

Signed-off-by: linghaoSu <[email protected]>

* fix(appcontroller): Uptake fix in gitops engine which fixes application sync with auto create ns and server side apply (#16942)

* Uptake fix in gitops engine to fix auto create ns with server side apply

Signed-off-by: anandf <[email protected]>

* Moved the new e2e test to different location

Signed-off-by: anandf <[email protected]>

* Fix test name to be less than 63 char for creating ns

Signed-off-by: anandf <[email protected]>

* update gitops-engine with latest master

Signed-off-by: Leonardo Luz Almeida <[email protected]>

---------

Signed-off-by: anandf <[email protected]>
Signed-off-by: Leonardo Luz Almeida <[email protected]>
Co-authored-by: Leonardo Luz Almeida <[email protected]>

* docs: Update argocd-cm.yaml bannerposition description (#16961) (#16962)

Signed-off-by: Keith Chong <[email protected]>

* docs: Added an example of downloading the latest stable version (#16968)

* added an example of downloading the latest stable version

Signed-off-by: Christian Hernandez <[email protected]>

* Update docs/cli_installation.md

Co-authored-by: Ishita Sequeira <[email protected]>
Signed-off-by: Christian Hernandez <[email protected]>

---------

Signed-off-by: Christian Hernandez <[email protected]>
Signed-off-by: Christian Hernandez <[email protected]>
Co-authored-by: Ishita Sequeira <[email protected]>

* feat(health): support for resourcerecordsets aws.crossplane.io resource (#16823)

Signed-off-by: nueavv <[email protected]>

* chore(deps): rm go-jose Cxb6dee8d5-b814 high vuln (#16947)

Signed-off-by: fengshunli <[email protected]>

* fix(server): allow disabling content-type check (#16959)

* fix(server): allow disabling content-type check

Signed-off-by: Michael Crenshaw <[email protected]>

* fix spacing

Signed-off-by: Michael Crenshaw <[email protected]>

---------

Signed-off-by: Michael Crenshaw <[email protected]>

* Clean up repeated package import (#16987)

Signed-off-by: Zechun Chen <[email protected]>

* docs(helm): add example of public oci chart (#17000)

There doesn't appear to be an example of using an OCI helm chart repository, so this adds a simple declarative example. This is a common question from the community.

Signed-off-by: Nicholas Morey <[email protected]>

* Badge for apps in any namespace (#16739)

Signed-off-by: sshenoy6 <[email protected]>
Co-authored-by: sshenoy6 <[email protected]>

* docs(helm): fix yaml formatting on code block (#17001)

Signed-off-by: Nicholas Morey <[email protected]>

* fix(redis): go-redis v9 regression missing metrics and reconnect hook (#13415) (#15275)

* fix(redis): go-redis v9 regression missing metrics and reconnect hook

Signed-off-by: phanama <[email protected]>

* fix: golangci lint return values not checked in tests

Signed-off-by: phanama <[email protected]>

* chore: move dnsError var locally into func

Signed-off-by: phanama <[email protected]>

---------

Signed-off-by: phanama <[email protected]>

* Fix typo in documentation (#17022)

Signed-off-by: saeedhosseini <[email protected]>

* feat: Prune resources in reverse order of syncwave during sync (#15074) (#16748)

* Add e2e & doc for prune order during sync

Signed-off-by: Siddhesh Ghadi <[email protected]>

* Point gitops-engine to fork with reverse prune changes

Signed-off-by: Siddhesh Ghadi <[email protected]>

* Fix ci linting failures

Signed-off-by: Siddhesh Ghadi <[email protected]>

* Update gitops-engine commit ref

Signed-off-by: Siddhesh Ghadi <[email protected]>

---------

Signed-off-by: Siddhesh Ghadi <[email protected]>

* docs(applicationset): explain impact of empty spec in templatePatch (#17042)

* docs: explain impact of empty spec in templatePatch

Signed-off-by: Nicholas Morey <[email protected]>

* fix: not conditional helm values

Signed-off-by: Nicholas Morey <[email protected]>

---------

Signed-off-by: Nicholas Morey <[email protected]>

* docs(kustomize): add components yaml example (#17043)

Signed-off-by: Nicholas Morey <[email protected]>

* docs(argocd-cm): add timeout.reconciliation.jitter example (#17044)

Signed-off-by: Nicholas Morey <[email protected]>

* docs(hooks): add postdelete to table (#17048)

Add `PostDelete` to the hooks table, and clean up wording and old availability statement (all the way back to v1, probably irrelevant).

Signed-off-by: Nicholas Morey <[email protected]>

* Corrected certificate managment for OCI helm charts (#16656)

Signed-off-by: Andrew Block <[email protected]>
Co-authored-by: Soumya Ghosh Dastidar <[email protected]>

* chore: use kubernetes 1.29.0 in CI (#17050)

Keeping 1.25 for now.

Signed-off-by: Shyukri Shyukriev <[email protected]>

* chore(deps): bump Helm to 3.14.0 (#17031) (#17032)

* bump helm to 3.14.0

Signed-off-by: Simon HEGE <[email protected]>

* Add a note about helm bump in upgrade instructions

Signed-off-by: Simon HEGE <[email protected]>

---------

Signed-off-by: Simon HEGE <[email protected]>

* chore(deps): bump github.com/evanphx/json-patch (#17021)

Bumps [github.com/evanphx/json-patch](https://github.com/evanphx/json-patch) from 5.6.0+incompatible to 5.9.0+incompatible.
- [Release notes](https://github.com/evanphx/json-patch/releases)
- [Commits](https://github.com/evanphx/json-patch/compare/v5.6.0...v5.9.0)

---
updated-dependencies:
- dependency-name: github.com/evanphx/json-patch
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): Upgrade aws-sdk-go to support eks pod identity (#17063)

* chore: Upgrade aws-sdk-go to support eks pod identity

---------

Signed-off-by: Carlos Santana <[email protected]>
Co-authored-by: Mathieu Bruneau <[email protected]>

* add cogen for notifications

Signed-off-by: Carlos Santana <[email protected]>

---------

Signed-off-by: Carlos Santana <[email protected]>
Co-authored-by: Mathieu Bruneau <[email protected]>

* fix: removed pkce code challange check for WebUI (#16730)

Signed-off-by: Patrick Kerwood <[email protected]>

* chore(ci): bump k3s versions to latest patches (#17060)

Signed-off-by: Michael Crenshaw <[email protected]>

* feat: add prometheus metrics around proxy extension requests (#17012)

* feat: add prometheus metrics around proxy extension requests

Signed-off-by: Leonardo Luz Almeida <[email protected]>

* update go.mod

Signed-off-by: Leonardo Luz Almeida <[email protected]>

* fix metrics bugs

Signed-off-by: Leonardo Luz Almeida <[email protected]>

* fix unit-test

Signed-off-by: Leonardo Luz Almeida <[email protected]>

* Add unit suffix in the duration metric

Signed-off-by: Leonardo Luz Almeida <[email protected]>

* update doc

Signed-off-by: Leonardo Luz Almeida <[email protected]>

---------

Signed-off-by: Leonardo Luz Almeida <[email protected]>

* fix(ci): correct helm checksum path (#17081)

Signed-off-by: Michael Crenshaw <[email protected]>

* fix(controller): fix application controller deployment crashing (#16984)

* fix application controller deployment crashing and update manifests

Signed-off-by: ishitasequeira <[email protected]>

* remove environment variable ARGOCD_ENABLE_DYNAMIC_CLUSTER_DISTRIBUTION

Signed-off-by: ishitasequeira <[email protected]>

* fix auto-generated docs

Signed-off-by: ishitasequeira <[email protected]>

---------

Signed-off-by: ishitasequeira <[email protected]>

* chore: improve error logs (#10592) (#17089)

Signed-off-by: Bardia Heydari <[email protected]>

* DOC: add Fly Security and Telavita in USERS.md (#17076)

Signed-off-by: Gustavo Esser <[email protected]>

* fix(ui): prevent app name too long hide open icon (#16983)

* fix(ui): prevent app name too long hide open icon

Signed-off-by: linghaoSu <[email protected]>

* fix(ui): fix app resource list lint

Signed-off-by: linghaoSu <[email protected]>

---------

Signed-off-by: linghaoSu <[email protected]>

* fix: log all token verification failures (#16625)

* fix: log all token verification failures

Signed-off-by: Michael Crenshaw <[email protected]>

* better

Signed-off-by: Michael Crenshaw <[email protected]>

---------

Signed-off-by: Michael Crenshaw <[email protected]>

* feat: add health-checks for eck elastic beat (#16563)

* feat: add health-checks for eck elastic beat

Signed-off-by: ebuildy <[email protected]>

* fix tests

Signed-off-by: ebuildy <[email protected]>

---------

Signed-off-by: ebuildy <[email protected]>

* docs(proposal): decoupling app sync from control plane user w/ impersonation (#14255)

* Proposal for decoupling application sync from control plane user using impersonation

Signed-off-by: Anand Francis Joseph <[email protected]>

* Moved the proposal document to the right directory

Signed-off-by: Anand Francis Joseph <[email protected]>

* Update docs/decouple-application-sync-user-using-impersonation

Co-authored-by: Blake Pettersson <[email protected]>
Signed-off-by: Anand Francis Joseph <[email protected]>

* Update docs/decouple-application-sync-user-using-impersonation

Co-authored-by: Blake Pettersson <[email protected]>
Signed-off-by: Anand Francis Joseph <[email protected]>

* Update docs/decouple-application-sync-user-using-impersonation

Co-authored-by: Blake Pettersson <[email protected]>
Signed-off-by: Anand Francis Joseph <[email protected]>

* Modified the proposal to have control in AppProjects alone instead of Application and AppProject

Signed-off-by: Anand Francis Joseph <[email protected]>

* Removed proposal placed in wrong directory and corrected examples

Signed-off-by: Anand Francis Joseph <[email protected]>

* Update docs/proposals/decouple-application-sync-user-using-impersonation

Co-authored-by: Michael Crenshaw <[email protected]>
Signed-off-by: Anand Francis Joseph <[email protected]>

* Update docs/proposals/decouple-application-sync-user-using-impersonation

Co-authored-by: Michael Crenshaw <[email protected]>
Signed-off-by: Anand Francis Joseph <[email protected]>

* Addressed review comments

Signed-off-by: Anand Francis Joseph <[email protected]>

* Additional corrections

Signed-off-by: anandf <[email protected]>

* Fixed alternative proposals section to include only AppProject based approach

Signed-off-by: anandf <[email protected]>

* Added information on impersonation and added related links

Signed-off-by: anandf <[email protected]>

* Added examples for remote cluster destination with the required RBAC access

Signed-off-by: anandf <[email protected]>

* Fixed clusterrole and clusterrolebinding creation commands

Signed-off-by: anandf <[email protected]>

* Addressed review comments from Akram

Signed-off-by: anandf <[email protected]>

* Corrected RBAC to include serviceaccounts that can be impersonated as swell

Signed-off-by: anandf <[email protected]>

* Address few more review comments from Ishita, Akram

Signed-off-by: anandf <[email protected]>

* Fixed a typo and updated the last updated date field

Signed-off-by: anandf <[email protected]>

* Added information of the sync hook behaviour and also corrected the namespace to match that of destination

Signed-off-by: Anand Francis Joseph <[email protected]>

* Changed proposal to meet the latest api design using destinationServiceAccounts

Signed-off-by: Anand Francis Joseph <[email protected]>

* Fixed proposal document to use destinationServiceAccounts struct

Signed-off-by: Anand Francis Joseph <[email protected]>

* Renamed proposal file to have .md extension

Signed-off-by: anandf <[email protected]>

* Using glob pattern instead of regex, and corrected the order of precedence when multiple matches are available

Signed-off-by: anandf <[email protected]>

---------

Signed-off-by: Anand Francis Joseph <[email protected]>
Signed-off-by: Anand Francis Joseph <[email protected]>
Signed-off-by: anandf <[email protected]>
Co-authored-by: Blake Pettersson <[email protected]>
Co-authored-by: Michael Crenshaw <[email protected]>

* chore(ci): run ci checks conditionally (#16982)

* chore(ci): run ci checks conditionally

This should prevent docs changes from having the need to run e2e tests
etc, and prevent backend changes from needing to run ui tests, and vice
versa.

This is similar to previous attempts (see #16706 and #13507), with the
difference here that we add the if checks on each _step_ rather than
each _job_ - the reason being that most of these jobs are required, and
if we skip whole jobs any PR which does this will be left hanging
indefinitely, so Github forces us to do this on a step level instead.

Signed-off-by: Blake Pettersson <[email protected]>

* chore(ci): run ci checks conditionally

Try conditional jobs, according to https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/troubleshooting-required-status-checks#handling-skipped-but-required-checks

Signed-off-by: Blake Pettersson <[email protected]>

* chore(ci): add composite test-e2e action

This is a workaround for the e2e tests which do not run yet report `pending` when they are actually skipped.

Signed-off-by: Blake Pettersson <[email protected]>

---------

Signed-off-by: Blake Pettersson <[email protected]>
Co-authored-by: Remington Breeze <[email protected]>
Co-authored-by: Ishita Sequeira <[email protected]>

* fix(ui): Change path to "root" when path is root directory (#14949)

* change path to display root

Signed-off-by: Eshwar Hebbur Shivakumar <[email protected]>

* Fix inequality typo

Signed-off-by: Eshwar Hebbur Shivakumar <[email protected]>

* Fix lint issues

Signed-off-by: Eshwar Hebbur Shivakumar <[email protected]>

---------

Signed-off-by: Eshwar Hebbur Shivakumar <[email protected]>

* typo `registires` -> `registries` (#17099)

Signed-off-by: Adam Huganir <[email protected]>

* Updated otelgrpc to remediate CVE found by JFrog Xray (#17084)

Signed-off-by: Tal Yitzhak <[email protected]>
Co-authored-by: Tal Yitzhak <[email protected]>
Co-authored-by: Blake Pettersson <[email protected]>

* docs(webhook): use real cm name instead of placeholder (#17002)

The document says I should registed configMap named argocd-notifications-cm but then uses placeholder in examples.

Signed-off-by: Petr Studeny <[email protected]>

* docs: Update Okta OIDC SSO docs (#13811)

* Update the Okta SSO docs

* fill out the OIDC section with step-by-step instructions on using Okta
  with custom authorization servers
* adjust outdated docs about updating the docs

Signed-off-by: Jonas Courteau <[email protected]>

* Add the Okta version that these docs are written against

Signed-off-by: Jonas Courteau <[email protected]>

---------

Signed-off-by: Jonas Courteau <[email protected]>
Signed-off-by: Dan Garfield <[email protected]>
Co-authored-by: Dan Garfield <[email protected]>

* Add a description for using contour httpproxy CRD (#14614)

Which allows you to reuse the same hostname.

Co-authored-by: Boris Smidt <[email protected]>
Co-authored-by: pasha-codefresh <[email protected]>

* fix: ci failures (#17107)

Signed-off-by: Soumya Ghosh Dastidar <[email protected]>

* chore(deps): bump library/golang from 1.21.3 to 1.22.0 in /test/remote (#17111)

Bumps library/golang from 1.21.3 to 1.22.0.

---
updated-dependencies:
- dependency-name: library/golang
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps-dev): bump yarn from 1.22.10 to 1.22.13 in /ui-test (#17092)

Bumps [yarn](https://github.com/yarnpkg/yarn) from 1.22.10 to 1.22.13.
- [Release notes](https://github.com/yarnpkg/yarn/releases)
- [Changelog](https://github.com/yarnpkg/yarn/blob/master/CHANGELOG.md)
- [Commits](https://github.com/yarnpkg/yarn/compare/1.22.10...v1.22.13)

---
updated-dependencies:
- dependency-name: yarn
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: pasha-codefresh <[email protected]>

* chore(deps): bump library/redis from 7.0.11 to 7.2.4 in /test/container (#16806)

Bumps library/redis from 7.0.11 to 7.2.4.

---
updated-dependencies:
- dependency-name: library/redis
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: pasha-codefresh <[email protected]>

* chore(deps-dev): bump yarn from 1.22.10 to 1.22.21 in /ui (#17096)

Bumps [yarn](https://github.com/yarnpkg/yarn) from 1.22.10 to 1.22.21.
- [Release notes](https://github.com/yarnpkg/yarn/releases)
- [Changelog](https://github.com/yarnpkg/yarn/blob/master/CHANGELOG.md)
- [Commits](https://github.com/yarnpkg/yarn/compare/1.22.10...v1.22.21)

---
updated-dependencies:
- dependency-name: yarn
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Blake Pettersson <[email protected]>
Co-authored-by: pasha-codefresh <[email protected]>

* fix the typo (#17116)

* chore(deps): bump library/node from 20.6.1 to 21.6.1 (#17053)

Bumps library/node from 20.6.1 to 21.6.1.

---
updated-dependencies:
- dependency-name: library/node
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: pasha-codefresh <[email protected]>

* chore(deps): bump library/node from 20.7.0 to 21.6.1 (#17065)

Signed-off-by: fengshunli <[email protected]>
Co-authored-by: pasha-codefresh <[email protected]>

* fix(kustomize): set build dir (#15057) #16229 #16652 (#16653)

* use repo root, not app path

Signed-off-by: Prune <[email protected]>

correct patch

Signed-off-by: Prune <[email protected]>

* use Getwd to find the root path for diff commands

Signed-off-by: Prune <[email protected]>

* set dot a default for argo app commands

Signed-off-by: Prune <[email protected]>

* revert default values

Signed-off-by: Prune <[email protected]>

* patch diff in TestNamespacedResourceDiffing

Signed-off-by: Prune <[email protected]>

* patching some diff and sync

Signed-off-by: Prune <[email protected]>

* patch remaining diff in error

Signed-off-by: Prune <[email protected]>

---------

Signed-off-by: Prune <[email protected]>

* chore(ci): tweak backend filters (#17134)

The existing backend filters get triggered even on frontend-only or
docs-only changes, which should not be the case. The reason for this
seems to be the fact that each filter line is ORed rather than ANDed.
To remedy this, we put all the filters on the same line.

I tried the filter out in a REPL
(https://runkit.com/blakepettersson/65c3daba99653f0008c74eda). This is
a filter using picomatch (the same library `dorny/paths-filter` uses).

Signed-off-by: Blake Pettersson <[email protected]>

* docs: fix error in toolchain setup (#17154)

Signed-off-by: Alexandre Gaudreault <[email protected]>

* chore(dex): 2.37.0 to 2.38.0 (#17157)

Signed-off-by: asingh51 <[email protected]>
Co-authored-by: asingh51 <[email protected]>

* feat: Add support for passing Redis Sentinel username(ACL) and password (#17168)

* Add support for passing Sentinel username and password

Signed-off-by: ShlomiTubul <[email protected]>

* fix align with var naming

Signed-off-by: ShlomiTubul <[email protected]>

* fix align with var naming

Signed-off-by: ShlomiTubul <[email protected]>

---------

Signed-off-by: ShlomiTubul <[email protected]>
Co-authored-by: ShlomiTubul <[email protected]>

* fix: stop initializing deployment informer if dynamic sharding is disabled (#17097)

* fix: stop initializing deployment informer if dynamic sharding is disabled

Signed-off-by: Soumya Ghosh Dastidar <[email protected]>

* feat: updated sharding cache getter func

Signed-off-by: Soumya Ghosh Dastidar <[email protected]>

---------

Signed-off-by: Soumya Ghosh Dastidar <[email protected]>

* feat: query escape function for notifications (#16343)

Signed-off-by: Jan Schumann <[email protected]>
Co-authored-by: pasha-codefresh <[email protected]>

* Update triggers doc to fix typo (#17185)

Signed-off-by: David Grizzanti <[email protected]>

* docs: fixes Template.md targetRevision typo (#17190)

* Template.md targetRevision typo fixed

Signed-off-by: Ajay Chidambaram <[email protected]>

* retrigger checks

Signed-off-by: Ajay Chidambaram <[email protected]>

* sign off

Signed-off-by: chidambaram27 <[email protected]>
Signed-off-by: Ajay Chidambaram <[email protected]>

* sign off

Signed-off-by: Ajay Chidambaram <[email protected]>

---------

Signed-off-by: Ajay Chidambaram <[email protected]>
Signed-off-by: chidambaram27 <[email protected]>

* docs: Private-helm-repo section target added to helm.md (#16697)

* helm-repo

Signed-off-by: Surajyadav <[email protected]>

* Update docs/user-guide/helm.md

Co-authored-by: Blake Pettersson <[email protected]>
Signed-off-by: Suraj yadav <[email protected]>

---------

Signed-off-by: Surajyadav <[email protected]>
Signed-off-by: Suraj yadav <[email protected]>
Co-authored-by: Blake Pettersson <[email protected]>

* fix: infer correct shard in statefulset setup (#17124, #17016)  (#17167)

* fix: infer correct shard in statefulset setup

Signed-off-by: Lukas Wöhrl <[email protected]>

* fix the case if only a single replica

Signed-off-by: Lukas Wöhrl <[email protected]>

* fix: resolving pointer on shard compare

Signed-off-by: Lukas Wöhrl <[email protected]>

* fix: add readlock for cluster accessor

Signed-off-by: Lukas Wöhrl <[email protected]>

* fix: use defer to protect access of 'shard'

Signed-off-by: Lukas Wöhrl <[email protected]>

* fix: revert locking in getclusteraccessor

Signed-off-by: Lukas Wöhrl <[email protected]>

* fix: handle nil shard case

Signed-off-by: Lukas Wöhrl <[email protected]>

* fix: handle any nil shard value as false

Signed-off-by: Lukas Wöhrl <[email protected]>

* fix: handle nil case and fix another missing pointer dereference 

Signed-off-by: Lukas Wöhrl <[email protected]>

* revert

Signed-off-by: Lukas Wöhrl <[email protected]>

* fix: added tests and fixed some behaviour bugs

Signed-off-by: Lukas Wöhrl <[email protected]>

* test: add test to validate that Shard value is not overriden

Signed-off-by: Lukas Wöhrl <[email protected]>

* fix: added tests and fixe the case when server is changed inside a secret

Signed-off-by: Lukas Wöhrl <[email protected]>

* tests: add test cases for infering the shard logic

Signed-off-by: Lukas Wöhrl <[email protected]>

---------

Signed-off-by: Lukas Wöhrl <[email protected]>

* feat: wait until resources are deleted #6085 (#16733)

* feat: wait until resources are deleted

Signed-off-by: MichaelMorris <[email protected]>

* Added unit and e2e test

Signed-off-by: MichaelMorris <[email protected]>

---------

Signed-off-by: MichaelMorris <[email protected]>

* fix(controller): add missing workqueue metrics (#16315) (#17013)

* fix(controller): add missing kubernetes metrics

Signed-off-by: Alexandre Gaudreault <[email protected]>

* validate workqueue metrics are present

Signed-off-by: Alexandre Gaudreault <[email protected]>

* use newer metrics registry

Signed-off-by: Alexandre Gaudreault <[email protected]>

* fix duplicated

Signed-off-by: Alexandre Gaudreault <[email protected]>

* init runtime controller in test to have correct metrics

Signed-off-by: Alexandre Gaudreault <[email protected]>

* fix lint error

Signed-off-by: Alexandre Gaudreault <[email protected]>

* update controller-runtime to remove metrics with high cardinality

Signed-off-by: Alexandre Gaudreault <[email protected]>

---------

Signed-off-by: Alexandre Gaudreault <[email protected]>
Signed-off-by: Alexandre Gaudreault <[email protected]>

* chore(deps): upgrade helm to 3.14.1 (#17213)

* chore(deps): upgrade helm to 3.14.1

Signed-off-by: Alexandre Gaudreault <[email protected]>

* move files to folder......

Signed-off-by: Alexandre Gaudreault <[email protected]>

---------

Signed-off-by: Alexandre Gaudreault <[email protected]>

* docs: Add PayIt to USERS.md (#17215)

* docs: Add PayIt to USERS.md

Signed-off-by: Matt Menzenski <[email protected]>

* docs: Add PayIt to USERS.md

Signed-off-by: Matt Menzenski <[email protected]>

---------

Signed-off-by: Matt Menzenski <[email protected]>

* docs: Add Nextbasket to USERS.md (#17228)

Signed-off-by: NextBasket-Petyo <[email protected]>

* fix: Permission Denied error when calling GetAppDetails API (#17221) (#17229)

Signed-off-by: Keith Chong <[email protected]>

* Count git checkout failures (#15657)

Signed-off-by: Mikołaj Przybysz <[email protected]>
Co-authored-by: Mikołaj Przybysz <[email protected]>
Co-authored-by: Blake Pettersson <[email protected]>

* chore(deps): bump library/node from 21.6.1 to 21.6.2 in /ui-test (#17226)

Bumps library/node from 21.6.1 to 21.6.2.

---
updated-dependencies:
- dependency-name: library/node
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: pasha-codefresh <[email protected]>

* chore(deps): bump library/node from 21.6.1 to 21.6.2 (#17223)

Bumps library/node from 21.6.1 to 21.6.2.

---
updated-dependencies:
- dependency-name: library/node
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: pasha-codefresh <[email protected]>

* chore(deps): bump library/golang in /test/remote (#17138)

Bumps library/golang from `094e47e` to `ef61a20`.

---
updated-dependencies:
- dependency-name: library/golang
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: pasha-codefresh <[email protected]>

* feat(grafana-dashboard): Update example dashboard, add AppSet Telemetry (#17232)

Signed-off-by: lukepatrick <[email protected]>

* chore(deps): bump library/node from `6fb1883` to `65998e3` in /ui-test (#17245)

Bumps library/node from `6fb1883` to `65998e3`.

---
updated-dependencies:
- dependency-name: library/node
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): bump library/golang in /test/remote (#17244)

Bumps library/golang from `ef61a20` to `7b297d9`.

---
updated-dependencies:
- dependency-name: library/golang
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Add `AppName` to the RepoServerAppDetailsQuery for notification-controller (#17233)

Signed-off-by: Dong Wang <[email protected]>
Co-authored-by: pasha-codefresh <[email protected]>

* chore(deps): bump library/node from `50703e6` to `65998e3` (#17243)

Bumps library/node from `50703e6` to `65998e3`.

---
updated-dependencies:
- dependency-name: library/node
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: pasha-codefresh <[email protected]>

* docs: Update USERS.md (#17248)

* Update USERS.md

Signed-off-by: itayvolo <[email protected]>

* Update USERS.md

Signed-off-by: itayvolo <[email protected]>

* Update USERS.md

Signed-off-by: itayvolo <[email protected]>

---------

Signed-off-by: itayvolo <[email protected]>
Co-authored-by: pasha-codefresh <[email protected]>

* docs(metrics): add release label to haproxy (#17264)

Add missing `release` label to `argocd-redis-haproxy-metrics`
ServiceMonitor example.

Signed-off-by: Gaston Festari <[email protected]>

* docs: Fix typo in notifications example (#17250)

* Fix typo in notifications example

I'm not too sure what the example should look like, so I'm taking a guess here.

Signed-off-by: Adrian Moisey <[email protected]>

* Update docs/operator-manual/notifications/troubleshooting.md

Co-authored-by: Soumya Ghosh Dastidar <[email protected]>
Signed-off-by: Adrian Moisey <[email protected]>

---------

Signed-off-by: Adrian Moisey <[email protected]>
Co-authored-by: Soumya Ghosh Dastidar <[email protected]>

* Update contributors-quickstart.md (#17266)

Signed-off-by: Dan Garfield <[email protected]>

* reduce unnecessary unmarshal (#17187)

Signed-off-by: Wilson Wang <[email protected]>

* fix typo (#17272)

Signed-off-by: Oscar Wieman <[email protected]>

* docs: Added examples for alternate EKS cluster authentication methods (#17270)

* Added examples for alternate EKS cluster authentication methods
Signed-off-by: Damon Edstrom <[email protected]>

* Update docs/operator-manual/declarative-setup.md

Signed-off-by: Dan Garfield <[email protected]>

Signed-off-by: Dan Garfield <[email protected]>

---------

Signed-off-by: Dan Garfield <[email protected]>
Co-authored-by: Dan Garfield <[email protected]>

* docs for PR #9791 (#16021)

Signed-off-by: mzain <[email protected]>

* chore(ci): use changed files action (#17180)

`dorny/paths-filter` doesn't seem to handle (multiple) negations well.
Therefore, this PR switches to `tj-actions/changed-files`, since it is
already successfully used in argo-workflows.

Signed-off-by: Blake Pettersson <[email protected]>

* fix(ui): Include application name in status badge (#17126)

* Added application name to badge

Signed-off-by: sshenoy6 <[email protected]>

* Rever svg change

Signed-off-by: sshenoy6 <[email protected]>

* Doc for disabling application name

Signed-off-by: sshenoy6 <[email protected]>

* Flag to not display application name

Signed-off-by: sshenoy6 <[email protected]>

* Added tests

Signed-off-by: sshenoy6 <[email protected]>

* Make no app name the default

Signed-off-by: sshenoy6 <[email protected]>

* Have enable app name as a query parameter

Signed-off-by: sshenoy6 <[email protected]>

* Have enable app name as a query parameter

Signed-off-by: sshenoy6 <[email protected]>

* argocd to original

Signed-off-by: sshenoy6 <[email protected]>

* Update docs/user-guide/status-badge.md

Signed-off-by: Dan Garfield <[email protected]>

Signed-off-by: Dan Garfield <[email protected]>

---------

Signed-off-by: sshenoy6 <[email protected]>
Signed-off-by: Dan Garfield <[email protected]>
Co-authored-by: sshenoy6 <[email protected]>
Co-authored-by: Dan Garfield <[email protected]>

* fix: Update test image ssl/crypto libs (#17303)

Signed-off-by: Carlos Santana <[email protected]>

* chore(deps-dev): bump postcss from 8.2.13 to 8.4.35 in /ui (#17140)

Bumps [postcss](https://github.com/postcss/postcss) from 8.2.13 to 8.4.35.
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/postcss/postcss/compare/8.2.13...8.4.35)

---
updated-dependencies:
- dependency-name: postcss
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: pasha-codefresh <[email protected]>

* chore(deps): bump library/redis in /test/container (#17137)

Bumps library/redis from `cc8b0b8` to `11c3e41`.

---
updated-dependencies:
- dependency-name: library/redis
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: pasha-codefresh <[email protected]>

* chore(deps): bump react-helmet and @types/react-helmet in /ui (#11556)

Bumps [react-helmet](https://github.com/nfl/react-helmet) and [@types/react-helmet](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-helmet). These dependencies needed to be updated together.

Updates `react-helmet` from 5.2.1 to 6.1.0
- [Release notes](https://github.com/nfl/react-helmet/releases)
- [Changelog](https://github.com/nfl/react-helmet/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nfl/react-helmet/commits/6.1.0)

Updates `@types/react-helmet` from 5.0.19 to 6.1.6
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-helmet)

---
updated-dependencies:
- dependency-name: react-helmet
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: "@types/react-helmet"
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: pasha-codefresh <[email protected]>

* chore(deps): bump bitnami/kubectl in /test/container (#14220)

Bumps bitnami/kubectl from `670fe3f` to `14ab746`.

---
updated-dependencies:
- dependency-name: bitnami/kubectl
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: pasha-codefresh <[email protected]>

* chore: add Rocket.Chat to users (#17306)

Signed-off-by: Debdut Chakraborty <[email protected]>

* chore(deps): bump library/ubuntu in /test/container (#13409)

Bumps library/ubuntu from `9a0bdde` to `67211c1`.

---
updated-dependencies:
- dependency-name: library/ubuntu
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): bump library/redis in /test/container (#17309)

Bumps library/redis from `11c3e41` to `e647cfe`.

---
updated-dependencies:
- dependency-name: library/redis
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): bump library/registry in /test/container (#13050)

Bumps library/registry from `41f413c` to `b209a41`.

---
updated-dependencies:
- dependency-name: library/registry
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: pasha-codefresh <[email protected]>

* chore(deps): bump library/busybox in /test/e2e/multiarch-container (#14592)

Bumps library/busybox from `2376a0c` to `3fbc632`.

---
updated-dependencies:
- dependency-name: library/busybox
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: pasha-codefresh <[email protected]>

* fix: use simple python image to build mkdocs (#17313)

* fix: use simple python image to build mkdocs

Signed-off-by: Carlos Santana <[email protected]>

* use python 3.7

Signed-off-by: Carlos Santana <[email protected]>

---------

Signed-off-by: Carlos Santana <[email protected]>

* chore(deps): bump library/registry in /test/container (#17317)

Bumps library/registry from `b209a41` to `f4e1b87`.

---
updated-dependencies:
- dependency-name: library/registry
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* docs: fixed name of environment variable and config map property enabling scm providers for applicationsets (#17326)

Signed-off-by: Juliusz <[email protected]>
Co-authored-by: Juliusz <[email protected]>

* fix(ui): Added dashed line between collapsed sections in Compact-diff (#17173)

* dashed-line-breaker

Signed-off-by: Surajyadav <[email protected]>

* dark-mode

Signed-off-by: Surajyadav <[email protected]>

* dark-mode-text-fix

Signed-off-by: Surajyadav <[email protected]>

---------

Signed-off-by: Surajyadav <[email protected]>

* fix: multi-source app breaks application parameters UI (#16910) (#17033)

Signed-off-by: Keith Chong <[email protected]>

* chore(deps): upgrade helm to 3.14.2 (#17330)

* chore(deps): upgrade helm to 3.14.2

Signed-off-by: David Bunn <[email protected]>

* Signing commit

Signed-off-by: David Bunn <[email protected]>

---------

Signed-off-by: David Bunn <[email protected]>

* chore(deps): bump library/node from 21.6.1 to 21.6.2 in /test/container (#17316)

Bumps library/node from 21.6.1 to 21.6.2.

---
updated-dependencies:
- dependency-name: library/node
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: pasha-codefresh <[email protected]>

* fix: The argocd server api-content-type flag does not allow empty content-type header (#17331)

Signed-off-by: Alexander Matyushentsev <[email protected]>

* fix(ui): The tiles in Applications List are too wide #17220 (#17340)

* fix(ui): The tiles in Applications List are too wide

Signed-off-by: Rafal Pelczar <[email protected]>

* change min width of app tiles

Signed-off-by: Rafal Pelczar <[email protected]>

---------

Signed-off-by: Rafal Pelczar <[email protected]>

* chore(notifications): remove unneeded operations from templates (#17307)

* chore(deps): bump library/ubuntu in /test/container (#13409)

Bumps library/ubuntu from `9a0bdde` to `67211c1`.

---
updated-dependencies:
- dependency-name: library/ubuntu
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Signed-off-by: Michael Firestone <[email protected]>

* rm unneeded operations from templates

Signed-off-by: Michael Firestone <[email protected]>
Signed-off-by: Michael Firestone <[email protected]>

* rm more unneeded ops

Signed-off-by: Michael Firestone <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Michael Firestone <[email protected]>
Signed-off-by: Michael Firestone <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Michael Firestone <[email protected]>

* feat: allow webhook settings to be referenced by external secret (#16262)

Signed-off-by: Arthur Outhenin-Chalandre <[email protected]>

* feat: Add app data to sharding cache to allow sharding by apps (#17014)

* Adding app list to sharding cache

Signed-off-by: Andrew Lee <[email protected]>

* Add shard by apps test

Signed-off-by: Andrew Lee <[email protected]>

* Fix lint

Signed-off-by: Andrew Lee <[email protected]>

* Add coverage to test

Signed-off-by: Andrew Lee <[email protected]>

* Fix lint

Signed-off-by: Andrew Lee <[email protected]>

* Converted cluster/app accesors to private, add apps-in-any-namespace suport in shardingcache init, added read lock to GetAppDistribution

Signed-off-by: Andrew Lee <[email protected]>

* Fix tests

Signed-off-by: Andrew Lee <[email protected]>

---------

Signed-off-by: Andrew Lee <[email protected]>

* docs: Update USERS.md (#17371)

Hi, I added IABAI as using officially ArgoCD

Signed-off-by: Andrea Sannuto <[email protected]>

* feat: add cli commands to add/delete sourceNamespaces from AppProject (#17337)

* Add cli to add/delete sourceNamespaces

Signed-off-by: Raghavi Shirur <[email protected]>

* update command/comments

Signed-off-by: Raghavi Shirur <[email protected]>

* update command/comments(1)

Signed-off-by: Raghavi Shirur <[email protected]>

* update user-guide docs

Signed-off-by: Raghavi Shirur <[email protected]>

* Retrigger CI pipeline

Signed-off-by: Raghavi Shirur <[email protected]>

* add check for '*' & rename command to remove-source-namespace

Signed-off-by: Raghavi Shirur <[email protected]>

* update command/comments(2)

Signed-off-by: Raghavi Shirur <[email protected]>

* update command/comments(3)

Signed-off-by: Raghavi Shirur <[email protected]>

* Retrigger CI pipeline

Signed-off-by: Raghavi Shirur <[email protected]>

---------

Signed-off-by: Raghavi Shirur <[email protected]>

* feat: add ability to auto label clusters from k8s clusterinfo (#17289)

* feat: add ability to auto label clusters

This gives the ability to automatically label cluster secrets on a cluster-by-cluster basis. If `enableClusterInfoLabels` is set on a cluster secret, the controller will (eventually) label the cluster secret with the current k8s version detected by the cluster info.

This needs documentation, e2e tests, as well as CLI/UI additions.

Signed-off-by: Blake Pettersson <[email protected]>

* refactor: use labels instead of secret data

This is easier to work with, especially in the context where we need
this feature.

Signed-off-by: Blake Pettersson <[email protected]>

* docs: add description on how to use dynamic labeling

Signed-off-by: Blake Pettersson <[email protected]>

---------

Signed-off-by: Blake Pettersson <[email protected]>

* chore(ci): free up disk space for goreleaser (#17373)

Signed-off-by: Michael Crenshaw <[email protected]>

* fix(ui): Dark-mode-enhancements (#17241)

* dark-mode-enhancements

Signed-off-by: Surajyadav <[email protected]>

* monaco

Signed-off-by: Surajyadav <[email protected]>

---------

Signed-off-by: Surajyadav <[email protected]>
Signed-off-by: Suraj yadav <[email protected]>

* feat: add cli commands to add/remove sources for multi-source applications (#17310)

* Initial commit

Signed-off-by: ishitasequeira <[email protected]>

* add cli commands to add/remove sources for multi-source app

Signed-off-by: ishitasequeira <[email protected]>

* add checks

Signed-off-by: ishitasequeira <[email protected]>

* add docs

Signed-off-by: ishitasequeira <[email protected]>

* refactor code and update tests

Signed-off-by: ishitasequeira <[email protected]>

* add removed additional switch case

Signed-off-by: ishitasequeira <[email protected]>

* fix suggested nits

Signed-off-by: ishitasequeira <[email protected]>

---------

Signed-off-by: ishitasequeira <[email protected]>

* feat: enable users to run commands related to Argo Applications in any namespace (#17360)

* enable --app-namespace falg for application get command

Signed-off-by: Mangaal <[email protected]>

* enable --app-namespace falg for application diff command

Signed-off-by: Mangaal <[email protected]>

* enable --app-namespace falg for application wait command

Signed-off-by: Mangaal <[email protected]>

* enable --app-namespace falg for application rollback command

Signed-off-by: Mangaal <[email protected]>

* enable --app-namespace falg for application patch command

Signed-off-by: Mangaal <[email protected]>

* enable --app-namespace falg for application edit command

Signed-off-by: Mangaal <[email protected]>

* enable --app-namespace falg for application history command

Signed-off-by: Mangaal <[email protected]>

* enable --app-namespace falg for application sync  command

Signed-off-by: Mangaal <[email protected]>

* enable --app-namespace falg for application delete  command

Signed-off-by: Mangaal <[email protected]>

* cli doc generated

Signed-off-by: Mangaal <[email protected]>

---------

Signed-off-by: Mangaal <[email protected]>
Co-authored-by: Ishita Sequeira <[email protected]>

* fix: preserve escape codes in repo url of git webhook payload (#17376)

Signed-off-by: Eric Bissonnette <[email protected]>

* fix: disable rate limiting sompletely by default (#17355)

Signed-off-by: Soumya Ghosh Dastidar <[email protected]>

* docs: use service-name instead of service-id (#17389)

* use service-name instead of service-id

Signed-off-by: DongHo Jung <[email protected]>

* trigger CICD

Signed-off-by: DongHo Jung <[email protected]>

---------

Signed-off-by: DongHo Jung <[email protected]>

* feat: Allow Kustomize common labels to not apply to selectors (#17329)

* modify crds

Signed-off-by: Collin <[email protected]>
Signed-off-by: lets-call-n-walk <[email protected]>

* cmd opts and test

Signed-off-by: Collin <[email protected]>
Signed-off-by: lets-call-n-walk <[email protected]>

* kustomize build and test

Signed-off-by: Collin <[email protected]>
Signed-off-by: lets-call-n-walk <[email protected]>

* fix option order and add ancestry to users

Signed-off-by: lets-call-n-walk <[email protected]>

* fix users format

Signed-off-by: lets-call-n-walk <[email protected]>

* generated files

Signed-off-by: lets-call-n-walk <[email protected]>

* set flag value

Signed-off-by: lets-call-n-walk <[email protected]>

* modify crds

Signed-off-by: Collin <[email protected]>
Signed-off-by: lets-call-n-walk <[email protected]>

* chore(deps): bump library/registry in /test/container (#17317)

Bumps library/registry from `b209a41` to `f4e1b87`.

---
updated-dependencies:
- dependency-name: library/registry
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Signed-off-by: Collin <[email protected]>
Signed-off-by: lets-call-n-walk <[email protected]>

* generated files

Signed-off-by: lets-call-n-walk <[email protected]>

* add docs

Signed-off-by: lets-call-n-walk <[email protected]>

* fix doc

Signed-off-by: lets-call-n-walk <[email protected]>

* remove debug prints

Signed-off-by: lets-call-n-walk <[email protected]>

* fix autogen docs

Signed-off-by: lets-call-n-walk <[email protected]>

---------

Signed-off-by: Collin <[email protected]>
Signed-off-by: lets-call-n-walk <[email protected]>
Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Collin Walker <[email protected]>
Co-authored-by: Collin <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* fix(ui): Highlight failing containers in the UI (#17143)

* failing container icon added

Signed-off-by: Surajyadav <[email protected]>

* lint-fix

Signed-off-by: Surajyadav <[email protected]>

* ..

Signed-off-by: Surajyadav <[email protected]>

* tried yarn lint-fix

Signed-off-by: Surajyadav <[email protected]>

* margin

Signed-off-by: Surajyadav <[email protected]>

* running

Signed-off-by: Surajyadav <[email protected]>

---------

Signed-off-by: Surajyadav <[email protected]>

* fix(ui): application-summary-help-icon fix (#17385)

* Update application-summary.tsx

revision-history icon fix

Signed-off-by: Suraj yadav <[email protected]>

* icons

Signed-off-by: Surajyadav <[email protected]>

---------

Signed-off-by: Suraj yadav <[email protected]>
Signed-off-by: Surajyadav <[email protected]>

* chore: add more unit tests around useDiffCache function (#17404)

* chore: add more unit tests around useDiffCache function

Signed-off-by: Leonardo Luz Almeida <[email protected]>

* fix doc

Signed-off-by: Leonardo Luz Almeida <[email protected]>

---------

Signed-off-by: Leonardo Luz Almeida <[email protected]>

* fix(grpcproxy): parse headers contain colon (#13274) (#14294)

* fix(grpcproxy): parse headers contain colon

Signed-off-by: bogay <[email protected]>

* test(apiclient): headers in wrong format

Signed-off-by: bogay <[email protected]>

---------

Signed-off-by: bogay <[email protected]>
Co-authored-by: Blake Pettersson <[email protected]>

* docs: Fix some awkward phrasing in `core.md` (#17412)

Signed-off-by: Nate Douglas <[email protected]>

* docs (aks cluster): update workloadidentity documentation (#17401)

Signed-off-by: duncan485 <[email protected]>

* docs: remove repetitive words (#17430)

Signed-off-by: hishope <[email protected]>

* feat(cli): enable --app-namespace flag for argocd app subcommand (#17437)

* add --app-namespace flag for set/unset command

Signed-off-by: Mangaal <[email protected]>

* add --app-namespace flag for add-source/remove-source command

Signed-off-by: Mangaal <[email protected]>

* fix bug, handle array out of-bound when --source-index=len(source)

Signed-off-by: Mangaal <[email protected]>

* add documentation

Signed-off-by: Mangaal <[email protected]>

---------

Signed-off-by: Mangaal <[email protected]>

* docs: Clarify for `valueFiles` behaviour with `path` field (#17431)

This commit adds clarification by explaining that `valueFiles` must be a relative path to the root of sources, even if the `path` field is set.

Signed-off-by: Takahiro Suzuki <[email protected]>
Signed-off-by: tkasuz <[email protected]>

* docs: Small edits to `docs/user-guide/application-set.md` (#17434)

* Update application-set.md

Signed-off-by: Nate Douglas <[email protected]>

* Make example code consistent with examples elsewhere.

Signed-off-by: Nathan Douglas <[email protected]>

---------

Signed-off-by: Nate Douglas <[email protected]>
Signe…
NagendraOpsmx added a commit to OpsMx/argo-cd that referenced this pull request Apr 2, 2024
* docs: Update signed-release-assets.md (#16755)

Missing \ in example

Signed-off-by: mfreeman451 <[email protected]>

* Document restarting argocd after modifying argocd-cm (#12405)

Signed-off-by: Lie Ryan <[email protected]>
Co-authored-by: Blake Pettersson <[email protected]>

* fix: support specifying username/password for redis holding manifests in argocd-server (#16786)

Signed-off-by: Alexander Matyushentsev <[email protected]>

* fix: add list permission deployments (#16785)

* add list permissions for deployments to application controller

Signed-off-by: ishitasequeira <[email protected]>

* revert redis-ha chart changes

Signed-off-by: ishitasequeira <[email protected]>

* revert redis-ha chart changes

Signed-off-by: ishitasequeira <[email protected]>

---------

Signed-off-by: ishitasequeira <[email protected]>

* chore(manifests): add ClsuterRole/ClusterRoleBinding for applicationset controller. (#16699)

Closes https://github.com/argoproj/argo-cd/issues/16698.

Signed-off-by: mugioka <[email protected]>

* Added socks5 proxy support for ssh based git URL, upgraded go-git to 5.10.1 (#15864)

Signed-off-by: Anand Francis Joseph <[email protected]>

* Added Openkruise workload integration health check scripts (#16238)

Signed-off-by: Mahesh <[email protected]>
Co-authored-by: Ishita Sequeira <[email protected]>

* fix: allow to run codegen outside GOPATH (#16511)

* fix: allow to run codegen outside GOPATH

Signed-off-by: Alexandre Gaudreault <[email protected]>

* clientgen

Signed-off-by: Alexandre Gaudreault <[email protected]>

* openapigen

Signed-off-by: Alexandre Gaudreault <[email protected]>

* remove ensure-gopath

Signed-off-by: Alexandre Gaudreault <[email protected]>

---------

Signed-off-by: Alexandre Gaudreault <[email protected]>

* fix: Use the cache for sharding (#15237)

* feat(sharding): use a cache

Signed-off-by: Alexandre Gaudreault <[email protected]>

* cluster cmd

Signed-off-by: Alexandre Gaudreault <[email protected]>

* - Assign shard 0 to in-cluster cluster and nil check updates
- Caching clusters while sharding: Fixing unit tests
- Update generated docs
- Debug e2e tests
- Default the shardNumber to the number of replicas if it is calculated to a higher value
- defered Unlock only when a lock is set
- Disabling temporarly other versions of k3s to check if e2e passes
- Do not fail if hostname format is not abc-n
- Fix unit test and skip some e2e
- Skip TestGitSubmoduleHTTPSSupport test
- Remove breaking defer c.lock.Unlock()
- Reverting testing all k3s version
- Default sharding fix
Signed-off-by: Akram Ben Aissi <[email protected]>

Signed-off-by: Akram Ben Aissi <[email protected]>

* fixes related to code review: renaming structure param, moving db initialisation

Signed-off-by: Akram Ben Aissi <[email protected]>

* Code review

Signed-off-by: Akram Ben Aissi <[email protected]>

* Set default shard to 0

Signed-off-by: Akram Ben Aissi <[email protected]>

* Set different default value for Sts and Deployment mode

Signed-off-by: Akram Ben Aissi <[email protected]>

* Expose ClusterShardingCache

Signed-off-by: Akram Ben Aissi <[email protected]>

* Removing use of argoDB.db for DistributionFunction

Signed-off-by: Akram Ben Aissi <[email protected]>

* Update generated documentation

Signed-off-by: Akram Ben Aissi <[email protected]>

* Fix comment about NoShardingDistributionFunction and NoShardingAlgorithm

Signed-off-by: Akram Ben Aissi <[email protected]>

---------

Signed-off-by: Alexandre Gaudreault <[email protected]>
Signed-off-by: Akram Ben Aissi <[email protected]>
Co-authored-by: Alexandre Gaudreault <[email protected]>

* fix(manifests): applicationset-controller dir is not added to cluster-rbac/kustomization.yaml. (#16810)

* fix(manifests): applicationset-controller dir is not added to cluster-rbac/kustomization.yaml.

Related PR: https://github.com/argoproj/argo-cd/pull/16699.

I missed adding a new folder(applicationset-controller) to kustomization.yaml.

So, i addressed it.

Signed-off-by: mugioka <[email protected]>

* chore: exec `make manifests`.

Signed-off-by: mugioka <[email protected]>

* chore: exec `make manifests`.

Signed-off-by: mugioka <[email protected]>

---------

Signed-off-by: mugioka <[email protected]>

* typo in comment (#16834)

Signed-off-by: eddimull <[email protected]>

* feat: adding option to specify an aws profile to use by the argocd-server when adding a EKS cluster (#16767)

useful for argocd-servers which are not running in AWS and want to add multiple EKS clusters using
separate keys instead of assuming roles

#16766

Signed-off-by: Isaac Gaskin <[email protected]>
Co-authored-by: Soumya Ghosh Dastidar <[email protected]>

* fix: enforce content type header for API requests (#16860)

Signed-off-by: Alexander Matyushentsev <[email protected]>

* adding tests for githandlers (#16678)

Signed-off-by: zhaque44 <[email protected]>

* fix: added logging if repo credentials collide (#16833)

Signed-off-by: doxsch <[email protected]>

* fix(cli): add support for Application in any namespace for app wait (argoproj#16812) (#16816)

Use fully qualified application names in ApplicationWaitCommand

Closes: #16812

Signed-off-by: Sergiy Kulanov <[email protected]>

* docs: Add LinkedIn badge to README.md (#16889)

Signed-off-by: Yuan Tang <[email protected]>

* update follow-redirects to 1.15.5 (#16899)

Signed-off-by: Regina Scott <[email protected]>

* chore: allow @approvers-docs to approve readme.md (#16897)

Signed-off-by: Blake Pettersson <[email protected]>

* Adding CNCF blog to readme file (#16893)

Signed-off-by: Chetan Deshmukh <[email protected]>

* docs: Update Azure AD to Entra ID (#16869)

* Update Azure AD to Entra ID

https://learn.microsoft.com/en-us/entra/fundamentals/new-name

Signed-off-by: Ryan Flynn <[email protected]>

* Add formerly known as azuread

Signed-off-by: Ryan Flynn <[email protected]>

---------

Signed-off-by: Ryan Flynn <[email protected]>

* chore: Preventing runnings jobs when updating documentation (#16706)

* Preventing runnings jobs when updating documentation

Signed-off-by: Aymen Ben Tanfous <[email protected]>

* Empty line added to .md file

Signed-off-by: Aymen Ben Tanfous <[email protected]>

---------

Signed-off-by: Aymen Ben Tanfous <[email protected]>
Co-authored-by: Aymen Ben Tanfous <[email protected]>

* chore(deps): bump github.com/go-git/go-git/v5 from 5.8.1 to 5.11.0 (#16711)

Bumps [github.com/go-git/go-git/v5](https://github.com/go-git/go-git) from 5.8.1 to 5.11.0.
- [Release notes](https://github.com/go-git/go-git/releases)
- [Commits](https://github.com/go-git/go-git/compare/v5.8.1...v5.11.0)

---
updated-dependencies:
- dependency-name: github.com/go-git/go-git/v5
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* fix(cli): add support for Application in any namespace for `app delete` cmd (#16898)

Use fully qualified application names when operate with Applications

Closes: #16896

Signed-off-by: Sergiy Kulanov <[email protected]>

* docs: Fixed Slugify doc in  GoTemplate.md (#16685)

* docs: Fixed Slugify doc in  GoTemplate.md

Signed-off-by: Aymen Ben Tanfous <[email protected]>

* Update docs/operator-manual/applicationset/GoTemplate.md

Co-authored-by: Blake Pettersson <[email protected]>
Signed-off-by: Aymen Ben Tanfous <[email protected]>

* Update docs/operator-manual/applicationset/GoTemplate.md

Co-authored-by: Blake Pettersson <[email protected]>
Signed-off-by: Aymen Ben Tanfous <[email protected]>

---------

Signed-off-by: Aymen Ben Tanfous <[email protected]>
Co-authored-by: Blake Pettersson <[email protected]>

* Initialize & send forceHttpBasicAuth & enableOCI params correctly during repo update from UI (#16794)

* feat(health): support for distribution aws.crossplane.io resource (#16827)

Signed-off-by: nueavv <[email protected]>

* fix(ui): set content-type for certain UI requests (#16923) (#16930)

Signed-off-by: Michael Crenshaw <[email protected]>

* feat(controller): add sync jitter(#14241) (#16820)

* feat(controller): add sync jitter

Signed-off-by: Alexandre Gaudreault <[email protected]>

* convert to duration for simplicity

Signed-off-by: Alexandre Gaudreault <[email protected]>

* docs

Signed-off-by: Alexandre Gaudreault <[email protected]>

* add config to manifests

Signed-off-by: Alexandre Gaudreault <[email protected]>

* fix tests

Signed-off-by: Alexandre Gaudreault <[email protected]>

---------

Signed-off-by: Alexandre Gaudreault <[email protected]>

* fix(action): Add validation for Kustomize Build Options white space (#16704)

Signed-off-by: Sergey Lanzman <[email protected]>

* Revert "chore: Preventing runnings jobs when updating documentation (#16706)" (#16943)

This reverts commit 65869a3860c7555b3ea7a962db44cc9b05f7e333.

Signed-off-by: Blake Pettersson <[email protected]>

* feat: Add PITS Globale Datenrettungsdienste to user list (#16765)

* Add PITS Globale Datenrettungsdienste to user list

Signed-off-by: Arnold <[email protected]>

* Update USERS.md

Signed-off-by: Arnold <[email protected]>

---------

Signed-off-by: Arnold <[email protected]>
Co-authored-by: Soumya Ghosh Dastidar <[email protected]>

* separate application controller roles into a separate manifests directory (#16884)

Signed-off-by: ishitasequeira <[email protected]>

* fix(ui): fix display banner when not explicit set position (#16741)

Signed-off-by: linghaoSu <[email protected]>

* fix(appcontroller): Uptake fix in gitops engine which fixes application sync with auto create ns and server side apply (#16942)

* Uptake fix in gitops engine to fix auto create ns with server side apply

Signed-off-by: anandf <[email protected]>

* Moved the new e2e test to different location

Signed-off-by: anandf <[email protected]>

* Fix test name to be less than 63 char for creating ns

Signed-off-by: anandf <[email protected]>

* update gitops-engine with latest master

Signed-off-by: Leonardo Luz Almeida <[email protected]>

---------

Signed-off-by: anandf <[email protected]>
Signed-off-by: Leonardo Luz Almeida <[email protected]>
Co-authored-by: Leonardo Luz Almeida <[email protected]>

* docs: Update argocd-cm.yaml bannerposition description (#16961) (#16962)

Signed-off-by: Keith Chong <[email protected]>

* docs: Added an example of downloading the latest stable version (#16968)

* added an example of downloading the latest stable version

Signed-off-by: Christian Hernandez <[email protected]>

* Update docs/cli_installation.md

Co-authored-by: Ishita Sequeira <[email protected]>
Signed-off-by: Christian Hernandez <[email protected]>

---------

Signed-off-by: Christian Hernandez <[email protected]>
Signed-off-by: Christian Hernandez <[email protected]>
Co-authored-by: Ishita Sequeira <[email protected]>

* feat(health): support for resourcerecordsets aws.crossplane.io resource (#16823)

Signed-off-by: nueavv <[email protected]>

* chore(deps): rm go-jose Cxb6dee8d5-b814 high vuln (#16947)

Signed-off-by: fengshunli <[email protected]>

* fix(server): allow disabling content-type check (#16959)

* fix(server): allow disabling content-type check

Signed-off-by: Michael Crenshaw <[email protected]>

* fix spacing

Signed-off-by: Michael Crenshaw <[email protected]>

---------

Signed-off-by: Michael Crenshaw <[email protected]>

* Clean up repeated package import (#16987)

Signed-off-by: Zechun Chen <[email protected]>

* docs(helm): add example of public oci chart (#17000)

There doesn't appear to be an example of using an OCI helm chart repository, so this adds a simple declarative example. This is a common question from the community.

Signed-off-by: Nicholas Morey <[email protected]>

* Badge for apps in any namespace (#16739)

Signed-off-by: sshenoy6 <[email protected]>
Co-authored-by: sshenoy6 <[email protected]>

* docs(helm): fix yaml formatting on code block (#17001)

Signed-off-by: Nicholas Morey <[email protected]>

* fix(redis): go-redis v9 regression missing metrics and reconnect hook (#13415) (#15275)

* fix(redis): go-redis v9 regression missing metrics and reconnect hook

Signed-off-by: phanama <[email protected]>

* fix: golangci lint return values not checked in tests

Signed-off-by: phanama <[email protected]>

* chore: move dnsError var locally into func

Signed-off-by: phanama <[email protected]>

---------

Signed-off-by: phanama <[email protected]>

* Fix typo in documentation (#17022)

Signed-off-by: saeedhosseini <[email protected]>

* feat: Prune resources in reverse order of syncwave during sync (#15074) (#16748)

* Add e2e & doc for prune order during sync

Signed-off-by: Siddhesh Ghadi <[email protected]>

* Point gitops-engine to fork with reverse prune changes

Signed-off-by: Siddhesh Ghadi <[email protected]>

* Fix ci linting failures

Signed-off-by: Siddhesh Ghadi <[email protected]>

* Update gitops-engine commit ref

Signed-off-by: Siddhesh Ghadi <[email protected]>

---------

Signed-off-by: Siddhesh Ghadi <[email protected]>

* docs(applicationset): explain impact of empty spec in templatePatch (#17042)

* docs: explain impact of empty spec in templatePatch

Signed-off-by: Nicholas Morey <[email protected]>

* fix: not conditional helm values

Signed-off-by: Nicholas Morey <[email protected]>

---------

Signed-off-by: Nicholas Morey <[email protected]>

* docs(kustomize): add components yaml example (#17043)

Signed-off-by: Nicholas Morey <[email protected]>

* docs(argocd-cm): add timeout.reconciliation.jitter example (#17044)

Signed-off-by: Nicholas Morey <[email protected]>

* docs(hooks): add postdelete to table (#17048)

Add `PostDelete` to the hooks table, and clean up wording and old availability statement (all the way back to v1, probably irrelevant).

Signed-off-by: Nicholas Morey <[email protected]>

* Corrected certificate managment for OCI helm charts (#16656)

Signed-off-by: Andrew Block <[email protected]>
Co-authored-by: Soumya Ghosh Dastidar <[email protected]>

* chore: use kubernetes 1.29.0 in CI (#17050)

Keeping 1.25 for now.

Signed-off-by: Shyukri Shyukriev <[email protected]>

* chore(deps): bump Helm to 3.14.0 (#17031) (#17032)

* bump helm to 3.14.0

Signed-off-by: Simon HEGE <[email protected]>

* Add a note about helm bump in upgrade instructions

Signed-off-by: Simon HEGE <[email protected]>

---------

Signed-off-by: Simon HEGE <[email protected]>

* chore(deps): bump github.com/evanphx/json-patch (#17021)

Bumps [github.com/evanphx/json-patch](https://github.com/evanphx/json-patch) from 5.6.0+incompatible to 5.9.0+incompatible.
- [Release notes](https://github.com/evanphx/json-patch/releases)
- [Commits](https://github.com/evanphx/json-patch/compare/v5.6.0...v5.9.0)

---
updated-dependencies:
- dependency-name: github.com/evanphx/json-patch
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): Upgrade aws-sdk-go to support eks pod identity (#17063)

* chore: Upgrade aws-sdk-go to support eks pod identity

---------

Signed-off-by: Carlos Santana <[email protected]>
Co-authored-by: Mathieu Bruneau <[email protected]>

* add cogen for notifications

Signed-off-by: Carlos Santana <[email protected]>

---------

Signed-off-by: Carlos Santana <[email protected]>
Co-authored-by: Mathieu Bruneau <[email protected]>

* fix: removed pkce code challange check for WebUI (#16730)

Signed-off-by: Patrick Kerwood <[email protected]>

* chore(ci): bump k3s versions to latest patches (#17060)

Signed-off-by: Michael Crenshaw <[email protected]>

* feat: add prometheus metrics around proxy extension requests (#17012)

* feat: add prometheus metrics around proxy extension requests

Signed-off-by: Leonardo Luz Almeida <[email protected]>

* update go.mod

Signed-off-by: Leonardo Luz Almeida <[email protected]>

* fix metrics bugs

Signed-off-by: Leonardo Luz Almeida <[email protected]>

* fix unit-test

Signed-off-by: Leonardo Luz Almeida <[email protected]>

* Add unit suffix in the duration metric

Signed-off-by: Leonardo Luz Almeida <[email protected]>

* update doc

Signed-off-by: Leonardo Luz Almeida <[email protected]>

---------

Signed-off-by: Leonardo Luz Almeida <[email protected]>

* fix(ci): correct helm checksum path (#17081)

Signed-off-by: Michael Crenshaw <[email protected]>

* fix(controller): fix application controller deployment crashing (#16984)

* fix application controller deployment crashing and update manifests

Signed-off-by: ishitasequeira <[email protected]>

* remove environment variable ARGOCD_ENABLE_DYNAMIC_CLUSTER_DISTRIBUTION

Signed-off-by: ishitasequeira <[email protected]>

* fix auto-generated docs

Signed-off-by: ishitasequeira <[email protected]>

---------

Signed-off-by: ishitasequeira <[email protected]>

* chore: improve error logs (#10592) (#17089)

Signed-off-by: Bardia Heydari <[email protected]>

* DOC: add Fly Security and Telavita in USERS.md (#17076)

Signed-off-by: Gustavo Esser <[email protected]>

* fix(ui): prevent app name too long hide open icon (#16983)

* fix(ui): prevent app name too long hide open icon

Signed-off-by: linghaoSu <[email protected]>

* fix(ui): fix app resource list lint

Signed-off-by: linghaoSu <[email protected]>

---------

Signed-off-by: linghaoSu <[email protected]>

* fix: log all token verification failures (#16625)

* fix: log all token verification failures

Signed-off-by: Michael Crenshaw <[email protected]>

* better

Signed-off-by: Michael Crenshaw <[email protected]>

---------

Signed-off-by: Michael Crenshaw <[email protected]>

* feat: add health-checks for eck elastic beat (#16563)

* feat: add health-checks for eck elastic beat

Signed-off-by: ebuildy <[email protected]>

* fix tests

Signed-off-by: ebuildy <[email protected]>

---------

Signed-off-by: ebuildy <[email protected]>

* docs(proposal): decoupling app sync from control plane user w/ impersonation (#14255)

* Proposal for decoupling application sync from control plane user using impersonation

Signed-off-by: Anand Francis Joseph <[email protected]>

* Moved the proposal document to the right directory

Signed-off-by: Anand Francis Joseph <[email protected]>

* Update docs/decouple-application-sync-user-using-impersonation

Co-authored-by: Blake Pettersson <[email protected]>
Signed-off-by: Anand Francis Joseph <[email protected]>

* Update docs/decouple-application-sync-user-using-impersonation

Co-authored-by: Blake Pettersson <[email protected]>
Signed-off-by: Anand Francis Joseph <[email protected]>

* Update docs/decouple-application-sync-user-using-impersonation

Co-authored-by: Blake Pettersson <[email protected]>
Signed-off-by: Anand Francis Joseph <[email protected]>

* Modified the proposal to have control in AppProjects alone instead of Application and AppProject

Signed-off-by: Anand Francis Joseph <[email protected]>

* Removed proposal placed in wrong directory and corrected examples

Signed-off-by: Anand Francis Joseph <[email protected]>

* Update docs/proposals/decouple-application-sync-user-using-impersonation

Co-authored-by: Michael Crenshaw <[email protected]>
Signed-off-by: Anand Francis Joseph <[email protected]>

* Update docs/proposals/decouple-application-sync-user-using-impersonation

Co-authored-by: Michael Crenshaw <[email protected]>
Signed-off-by: Anand Francis Joseph <[email protected]>

* Addressed review comments

Signed-off-by: Anand Francis Joseph <[email protected]>

* Additional corrections

Signed-off-by: anandf <[email protected]>

* Fixed alternative proposals section to include only AppProject based approach

Signed-off-by: anandf <[email protected]>

* Added information on impersonation and added related links

Signed-off-by: anandf <[email protected]>

* Added examples for remote cluster destination with the required RBAC access

Signed-off-by: anandf <[email protected]>

* Fixed clusterrole and clusterrolebinding creation commands

Signed-off-by: anandf <[email protected]>

* Addressed review comments from Akram

Signed-off-by: anandf <[email protected]>

* Corrected RBAC to include serviceaccounts that can be impersonated as swell

Signed-off-by: anandf <[email protected]>

* Address few more review comments from Ishita, Akram

Signed-off-by: anandf <[email protected]>

* Fixed a typo and updated the last updated date field

Signed-off-by: anandf <[email protected]>

* Added information of the sync hook behaviour and also corrected the namespace to match that of destination

Signed-off-by: Anand Francis Joseph <[email protected]>

* Changed proposal to meet the latest api design using destinationServiceAccounts

Signed-off-by: Anand Francis Joseph <[email protected]>

* Fixed proposal document to use destinationServiceAccounts struct

Signed-off-by: Anand Francis Joseph <[email protected]>

* Renamed proposal file to have .md extension

Signed-off-by: anandf <[email protected]>

* Using glob pattern instead of regex, and corrected the order of precedence when multiple matches are available

Signed-off-by: anandf <[email protected]>

---------

Signed-off-by: Anand Francis Joseph <[email protected]>
Signed-off-by: Anand Francis Joseph <[email protected]>
Signed-off-by: anandf <[email protected]>
Co-authored-by: Blake Pettersson <[email protected]>
Co-authored-by: Michael Crenshaw <[email protected]>

* chore(ci): run ci checks conditionally (#16982)

* chore(ci): run ci checks conditionally

This should prevent docs changes from having the need to run e2e tests
etc, and prevent backend changes from needing to run ui tests, and vice
versa.

This is similar to previous attempts (see #16706 and #13507), with the
difference here that we add the if checks on each _step_ rather than
each _job_ - the reason being that most of these jobs are required, and
if we skip whole jobs any PR which does this will be left hanging
indefinitely, so Github forces us to do this on a step level instead.

Signed-off-by: Blake Pettersson <[email protected]>

* chore(ci): run ci checks conditionally

Try conditional jobs, according to https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/troubleshooting-required-status-checks#handling-skipped-but-required-checks

Signed-off-by: Blake Pettersson <[email protected]>

* chore(ci): add composite test-e2e action

This is a workaround for the e2e tests which do not run yet report `pending` when they are actually skipped.

Signed-off-by: Blake Pettersson <[email protected]>

---------

Signed-off-by: Blake Pettersson <[email protected]>
Co-authored-by: Remington Breeze <[email protected]>
Co-authored-by: Ishita Sequeira <[email protected]>

* fix(ui): Change path to "root" when path is root directory (#14949)

* change path to display root

Signed-off-by: Eshwar Hebbur Shivakumar <[email protected]>

* Fix inequality typo

Signed-off-by: Eshwar Hebbur Shivakumar <[email protected]>

* Fix lint issues

Signed-off-by: Eshwar Hebbur Shivakumar <[email protected]>

---------

Signed-off-by: Eshwar Hebbur Shivakumar <[email protected]>

* typo `registires` -> `registries` (#17099)

Signed-off-by: Adam Huganir <[email protected]>

* Updated otelgrpc to remediate CVE found by JFrog Xray (#17084)

Signed-off-by: Tal Yitzhak <[email protected]>
Co-authored-by: Tal Yitzhak <[email protected]>
Co-authored-by: Blake Pettersson <[email protected]>

* docs(webhook): use real cm name instead of placeholder (#17002)

The document says I should registed configMap named argocd-notifications-cm but then uses placeholder in examples.

Signed-off-by: Petr Studeny <[email protected]>

* docs: Update Okta OIDC SSO docs (#13811)

* Update the Okta SSO docs

* fill out the OIDC section with step-by-step instructions on using Okta
  with custom authorization servers
* adjust outdated docs about updating the docs

Signed-off-by: Jonas Courteau <[email protected]>

* Add the Okta version that these docs are written against

Signed-off-by: Jonas Courteau <[email protected]>

---------

Signed-off-by: Jonas Courteau <[email protected]>
Signed-off-by: Dan Garfield <[email protected]>
Co-authored-by: Dan Garfield <[email protected]>

* Add a description for using contour httpproxy CRD (#14614)

Which allows you to reuse the same hostname.

Co-authored-by: Boris Smidt <[email protected]>
Co-authored-by: pasha-codefresh <[email protected]>

* fix: ci failures (#17107)

Signed-off-by: Soumya Ghosh Dastidar <[email protected]>

* chore(deps): bump library/golang from 1.21.3 to 1.22.0 in /test/remote (#17111)

Bumps library/golang from 1.21.3 to 1.22.0.

---
updated-dependencies:
- dependency-name: library/golang
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps-dev): bump yarn from 1.22.10 to 1.22.13 in /ui-test (#17092)

Bumps [yarn](https://github.com/yarnpkg/yarn) from 1.22.10 to 1.22.13.
- [Release notes](https://github.com/yarnpkg/yarn/releases)
- [Changelog](https://github.com/yarnpkg/yarn/blob/master/CHANGELOG.md)
- [Commits](https://github.com/yarnpkg/yarn/compare/1.22.10...v1.22.13)

---
updated-dependencies:
- dependency-name: yarn
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: pasha-codefresh <[email protected]>

* chore(deps): bump library/redis from 7.0.11 to 7.2.4 in /test/container (#16806)

Bumps library/redis from 7.0.11 to 7.2.4.

---
updated-dependencies:
- dependency-name: library/redis
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: pasha-codefresh <[email protected]>

* chore(deps-dev): bump yarn from 1.22.10 to 1.22.21 in /ui (#17096)

Bumps [yarn](https://github.com/yarnpkg/yarn) from 1.22.10 to 1.22.21.
- [Release notes](https://github.com/yarnpkg/yarn/releases)
- [Changelog](https://github.com/yarnpkg/yarn/blob/master/CHANGELOG.md)
- [Commits](https://github.com/yarnpkg/yarn/compare/1.22.10...v1.22.21)

---
updated-dependencies:
- dependency-name: yarn
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Blake Pettersson <[email protected]>
Co-authored-by: pasha-codefresh <[email protected]>

* fix the typo (#17116)

* chore(deps): bump library/node from 20.6.1 to 21.6.1 (#17053)

Bumps library/node from 20.6.1 to 21.6.1.

---
updated-dependencies:
- dependency-name: library/node
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: pasha-codefresh <[email protected]>

* chore(deps): bump library/node from 20.7.0 to 21.6.1 (#17065)

Signed-off-by: fengshunli <[email protected]>
Co-authored-by: pasha-codefresh <[email protected]>

* fix(kustomize): set build dir (#15057) #16229 #16652 (#16653)

* use repo root, not app path

Signed-off-by: Prune <[email protected]>

correct patch

Signed-off-by: Prune <[email protected]>

* use Getwd to find the root path for diff commands

Signed-off-by: Prune <[email protected]>

* set dot a default for argo app commands

Signed-off-by: Prune <[email protected]>

* revert default values

Signed-off-by: Prune <[email protected]>

* patch diff in TestNamespacedResourceDiffing

Signed-off-by: Prune <[email protected]>

* patching some diff and sync

Signed-off-by: Prune <[email protected]>

* patch remaining diff in error

Signed-off-by: Prune <[email protected]>

---------

Signed-off-by: Prune <[email protected]>

* chore(ci): tweak backend filters (#17134)

The existing backend filters get triggered even on frontend-only or
docs-only changes, which should not be the case. The reason for this
seems to be the fact that each filter line is ORed rather than ANDed.
To remedy this, we put all the filters on the same line.

I tried the filter out in a REPL
(https://runkit.com/blakepettersson/65c3daba99653f0008c74eda). This is
a filter using picomatch (the same library `dorny/paths-filter` uses).

Signed-off-by: Blake Pettersson <[email protected]>

* docs: fix error in toolchain setup (#17154)

Signed-off-by: Alexandre Gaudreault <[email protected]>

* chore(dex): 2.37.0 to 2.38.0 (#17157)

Signed-off-by: asingh51 <[email protected]>
Co-authored-by: asingh51 <[email protected]>

* feat: Add support for passing Redis Sentinel username(ACL) and password (#17168)

* Add support for passing Sentinel username and password

Signed-off-by: ShlomiTubul <[email protected]>

* fix align with var naming

Signed-off-by: ShlomiTubul <[email protected]>

* fix align with var naming

Signed-off-by: ShlomiTubul <[email protected]>

---------

Signed-off-by: ShlomiTubul <[email protected]>
Co-authored-by: ShlomiTubul <[email protected]>

* fix: stop initializing deployment informer if dynamic sharding is disabled (#17097)

* fix: stop initializing deployment informer if dynamic sharding is disabled

Signed-off-by: Soumya Ghosh Dastidar <[email protected]>

* feat: updated sharding cache getter func

Signed-off-by: Soumya Ghosh Dastidar <[email protected]>

---------

Signed-off-by: Soumya Ghosh Dastidar <[email protected]>

* feat: query escape function for notifications (#16343)

Signed-off-by: Jan Schumann <[email protected]>
Co-authored-by: pasha-codefresh <[email protected]>

* Update triggers doc to fix typo (#17185)

Signed-off-by: David Grizzanti <[email protected]>

* docs: fixes Template.md targetRevision typo (#17190)

* Template.md targetRevision typo fixed

Signed-off-by: Ajay Chidambaram <[email protected]>

* retrigger checks

Signed-off-by: Ajay Chidambaram <[email protected]>

* sign off

Signed-off-by: chidambaram27 <[email protected]>
Signed-off-by: Ajay Chidambaram <[email protected]>

* sign off

Signed-off-by: Ajay Chidambaram <[email protected]>

---------

Signed-off-by: Ajay Chidambaram <[email protected]>
Signed-off-by: chidambaram27 <[email protected]>

* docs: Private-helm-repo section target added to helm.md (#16697)

* helm-repo

Signed-off-by: Surajyadav <[email protected]>

* Update docs/user-guide/helm.md

Co-authored-by: Blake Pettersson <[email protected]>
Signed-off-by: Suraj yadav <[email protected]>

---------

Signed-off-by: Surajyadav <[email protected]>
Signed-off-by: Suraj yadav <[email protected]>
Co-authored-by: Blake Pettersson <[email protected]>

* fix: infer correct shard in statefulset setup (#17124, #17016)  (#17167)

* fix: infer correct shard in statefulset setup

Signed-off-by: Lukas Wöhrl <[email protected]>

* fix the case if only a single replica

Signed-off-by: Lukas Wöhrl <[email protected]>

* fix: resolving pointer on shard compare

Signed-off-by: Lukas Wöhrl <[email protected]>

* fix: add readlock for cluster accessor

Signed-off-by: Lukas Wöhrl <[email protected]>

* fix: use defer to protect access of 'shard'

Signed-off-by: Lukas Wöhrl <[email protected]>

* fix: revert locking in getclusteraccessor

Signed-off-by: Lukas Wöhrl <[email protected]>

* fix: handle nil shard case

Signed-off-by: Lukas Wöhrl <[email protected]>

* fix: handle any nil shard value as false

Signed-off-by: Lukas Wöhrl <[email protected]>

* fix: handle nil case and fix another missing pointer dereference 

Signed-off-by: Lukas Wöhrl <[email protected]>

* revert

Signed-off-by: Lukas Wöhrl <[email protected]>

* fix: added tests and fixed some behaviour bugs

Signed-off-by: Lukas Wöhrl <[email protected]>

* test: add test to validate that Shard value is not overriden

Signed-off-by: Lukas Wöhrl <[email protected]>

* fix: added tests and fixe the case when server is changed inside a secret

Signed-off-by: Lukas Wöhrl <[email protected]>

* tests: add test cases for infering the shard logic

Signed-off-by: Lukas Wöhrl <[email protected]>

---------

Signed-off-by: Lukas Wöhrl <[email protected]>

* feat: wait until resources are deleted #6085 (#16733)

* feat: wait until resources are deleted

Signed-off-by: MichaelMorris <[email protected]>

* Added unit and e2e test

Signed-off-by: MichaelMorris <[email protected]>

---------

Signed-off-by: MichaelMorris <[email protected]>

* fix(controller): add missing workqueue metrics (#16315) (#17013)

* fix(controller): add missing kubernetes metrics

Signed-off-by: Alexandre Gaudreault <[email protected]>

* validate workqueue metrics are present

Signed-off-by: Alexandre Gaudreault <[email protected]>

* use newer metrics registry

Signed-off-by: Alexandre Gaudreault <[email protected]>

* fix duplicated

Signed-off-by: Alexandre Gaudreault <[email protected]>

* init runtime controller in test to have correct metrics

Signed-off-by: Alexandre Gaudreault <[email protected]>

* fix lint error

Signed-off-by: Alexandre Gaudreault <[email protected]>

* update controller-runtime to remove metrics with high cardinality

Signed-off-by: Alexandre Gaudreault <[email protected]>

---------

Signed-off-by: Alexandre Gaudreault <[email protected]>
Signed-off-by: Alexandre Gaudreault <[email protected]>

* chore(deps): upgrade helm to 3.14.1 (#17213)

* chore(deps): upgrade helm to 3.14.1

Signed-off-by: Alexandre Gaudreault <[email protected]>

* move files to folder......

Signed-off-by: Alexandre Gaudreault <[email protected]>

---------

Signed-off-by: Alexandre Gaudreault <[email protected]>

* docs: Add PayIt to USERS.md (#17215)

* docs: Add PayIt to USERS.md

Signed-off-by: Matt Menzenski <[email protected]>

* docs: Add PayIt to USERS.md

Signed-off-by: Matt Menzenski <[email protected]>

---------

Signed-off-by: Matt Menzenski <[email protected]>

* docs: Add Nextbasket to USERS.md (#17228)

Signed-off-by: NextBasket-Petyo <[email protected]>

* fix: Permission Denied error when calling GetAppDetails API (#17221) (#17229)

Signed-off-by: Keith Chong <[email protected]>

* Count git checkout failures (#15657)

Signed-off-by: Mikołaj Przybysz <[email protected]>
Co-authored-by: Mikołaj Przybysz <[email protected]>
Co-authored-by: Blake Pettersson <[email protected]>

* chore(deps): bump library/node from 21.6.1 to 21.6.2 in /ui-test (#17226)

Bumps library/node from 21.6.1 to 21.6.2.

---
updated-dependencies:
- dependency-name: library/node
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: pasha-codefresh <[email protected]>

* chore(deps): bump library/node from 21.6.1 to 21.6.2 (#17223)

Bumps library/node from 21.6.1 to 21.6.2.

---
updated-dependencies:
- dependency-name: library/node
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: pasha-codefresh <[email protected]>

* chore(deps): bump library/golang in /test/remote (#17138)

Bumps library/golang from `094e47e` to `ef61a20`.

---
updated-dependencies:
- dependency-name: library/golang
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: pasha-codefresh <[email protected]>

* feat(grafana-dashboard): Update example dashboard, add AppSet Telemetry (#17232)

Signed-off-by: lukepatrick <[email protected]>

* chore(deps): bump library/node from `6fb1883` to `65998e3` in /ui-test (#17245)

Bumps library/node from `6fb1883` to `65998e3`.

---
updated-dependencies:
- dependency-name: library/node
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): bump library/golang in /test/remote (#17244)

Bumps library/golang from `ef61a20` to `7b297d9`.

---
updated-dependencies:
- dependency-name: library/golang
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Add `AppName` to the RepoServerAppDetailsQuery for notification-controller (#17233)

Signed-off-by: Dong Wang <[email protected]>
Co-authored-by: pasha-codefresh <[email protected]>

* chore(deps): bump library/node from `50703e6` to `65998e3` (#17243)

Bumps library/node from `50703e6` to `65998e3`.

---
updated-dependencies:
- dependency-name: library/node
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: pasha-codefresh <[email protected]>

* docs: Update USERS.md (#17248)

* Update USERS.md

Signed-off-by: itayvolo <[email protected]>

* Update USERS.md

Signed-off-by: itayvolo <[email protected]>

* Update USERS.md

Signed-off-by: itayvolo <[email protected]>

---------

Signed-off-by: itayvolo <[email protected]>
Co-authored-by: pasha-codefresh <[email protected]>

* docs(metrics): add release label to haproxy (#17264)

Add missing `release` label to `argocd-redis-haproxy-metrics`
ServiceMonitor example.

Signed-off-by: Gaston Festari <[email protected]>

* docs: Fix typo in notifications example (#17250)

* Fix typo in notifications example

I'm not too sure what the example should look like, so I'm taking a guess here.

Signed-off-by: Adrian Moisey <[email protected]>

* Update docs/operator-manual/notifications/troubleshooting.md

Co-authored-by: Soumya Ghosh Dastidar <[email protected]>
Signed-off-by: Adrian Moisey <[email protected]>

---------

Signed-off-by: Adrian Moisey <[email protected]>
Co-authored-by: Soumya Ghosh Dastidar <[email protected]>

* Update contributors-quickstart.md (#17266)

Signed-off-by: Dan Garfield <[email protected]>

* reduce unnecessary unmarshal (#17187)

Signed-off-by: Wilson Wang <[email protected]>

* fix typo (#17272)

Signed-off-by: Oscar Wieman <[email protected]>

* docs: Added examples for alternate EKS cluster authentication methods (#17270)

* Added examples for alternate EKS cluster authentication methods
Signed-off-by: Damon Edstrom <[email protected]>

* Update docs/operator-manual/declarative-setup.md

Signed-off-by: Dan Garfield <[email protected]>

Signed-off-by: Dan Garfield <[email protected]>

---------

Signed-off-by: Dan Garfield <[email protected]>
Co-authored-by: Dan Garfield <[email protected]>

* docs for PR #9791 (#16021)

Signed-off-by: mzain <[email protected]>

* chore(ci): use changed files action (#17180)

`dorny/paths-filter` doesn't seem to handle (multiple) negations well.
Therefore, this PR switches to `tj-actions/changed-files`, since it is
already successfully used in argo-workflows.

Signed-off-by: Blake Pettersson <[email protected]>

* fix(ui): Include application name in status badge (#17126)

* Added application name to badge

Signed-off-by: sshenoy6 <[email protected]>

* Rever svg change

Signed-off-by: sshenoy6 <[email protected]>

* Doc for disabling application name

Signed-off-by: sshenoy6 <[email protected]>

* Flag to not display application name

Signed-off-by: sshenoy6 <[email protected]>

* Added tests

Signed-off-by: sshenoy6 <[email protected]>

* Make no app name the default

Signed-off-by: sshenoy6 <[email protected]>

* Have enable app name as a query parameter

Signed-off-by: sshenoy6 <[email protected]>

* Have enable app name as a query parameter

Signed-off-by: sshenoy6 <[email protected]>

* argocd to original

Signed-off-by: sshenoy6 <[email protected]>

* Update docs/user-guide/status-badge.md

Signed-off-by: Dan Garfield <[email protected]>

Signed-off-by: Dan Garfield <[email protected]>

---------

Signed-off-by: sshenoy6 <[email protected]>
Signed-off-by: Dan Garfield <[email protected]>
Co-authored-by: sshenoy6 <[email protected]>
Co-authored-by: Dan Garfield <[email protected]>

* fix: Update test image ssl/crypto libs (#17303)

Signed-off-by: Carlos Santana <[email protected]>

* chore(deps-dev): bump postcss from 8.2.13 to 8.4.35 in /ui (#17140)

Bumps [postcss](https://github.com/postcss/postcss) from 8.2.13 to 8.4.35.
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/postcss/postcss/compare/8.2.13...8.4.35)

---
updated-dependencies:
- dependency-name: postcss
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: pasha-codefresh <[email protected]>

* chore(deps): bump library/redis in /test/container (#17137)

Bumps library/redis from `cc8b0b8` to `11c3e41`.

---
updated-dependencies:
- dependency-name: library/redis
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: pasha-codefresh <[email protected]>

* chore(deps): bump react-helmet and @types/react-helmet in /ui (#11556)

Bumps [react-helmet](https://github.com/nfl/react-helmet) and [@types/react-helmet](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-helmet). These dependencies needed to be updated together.

Updates `react-helmet` from 5.2.1 to 6.1.0
- [Release notes](https://github.com/nfl/react-helmet/releases)
- [Changelog](https://github.com/nfl/react-helmet/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nfl/react-helmet/commits/6.1.0)

Updates `@types/react-helmet` from 5.0.19 to 6.1.6
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-helmet)

---
updated-dependencies:
- dependency-name: react-helmet
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: "@types/react-helmet"
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: pasha-codefresh <[email protected]>

* chore(deps): bump bitnami/kubectl in /test/container (#14220)

Bumps bitnami/kubectl from `670fe3f` to `14ab746`.

---
updated-dependencies:
- dependency-name: bitnami/kubectl
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: pasha-codefresh <[email protected]>

* chore: add Rocket.Chat to users (#17306)

Signed-off-by: Debdut Chakraborty <[email protected]>

* chore(deps): bump library/ubuntu in /test/container (#13409)

Bumps library/ubuntu from `9a0bdde` to `67211c1`.

---
updated-dependencies:
- dependency-name: library/ubuntu
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): bump library/redis in /test/container (#17309)

Bumps library/redis from `11c3e41` to `e647cfe`.

---
updated-dependencies:
- dependency-name: library/redis
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): bump library/registry in /test/container (#13050)

Bumps library/registry from `41f413c` to `b209a41`.

---
updated-dependencies:
- dependency-name: library/registry
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: pasha-codefresh <[email protected]>

* chore(deps): bump library/busybox in /test/e2e/multiarch-container (#14592)

Bumps library/busybox from `2376a0c` to `3fbc632`.

---
updated-dependencies:
- dependency-name: library/busybox
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: pasha-codefresh <[email protected]>

* fix: use simple python image to build mkdocs (#17313)

* fix: use simple python image to build mkdocs

Signed-off-by: Carlos Santana <[email protected]>

* use python 3.7

Signed-off-by: Carlos Santana <[email protected]>

---------

Signed-off-by: Carlos Santana <[email protected]>

* chore(deps): bump library/registry in /test/container (#17317)

Bumps library/registry from `b209a41` to `f4e1b87`.

---
updated-dependencies:
- dependency-name: library/registry
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* docs: fixed name of environment variable and config map property enabling scm providers for applicationsets (#17326)

Signed-off-by: Juliusz <[email protected]>
Co-authored-by: Juliusz <[email protected]>

* fix(ui): Added dashed line between collapsed sections in Compact-diff (#17173)

* dashed-line-breaker

Signed-off-by: Surajyadav <[email protected]>

* dark-mode

Signed-off-by: Surajyadav <[email protected]>

* dark-mode-text-fix

Signed-off-by: Surajyadav <[email protected]>

---------

Signed-off-by: Surajyadav <[email protected]>

* fix: multi-source app breaks application parameters UI (#16910) (#17033)

Signed-off-by: Keith Chong <[email protected]>

* chore(deps): upgrade helm to 3.14.2 (#17330)

* chore(deps): upgrade helm to 3.14.2

Signed-off-by: David Bunn <[email protected]>

* Signing commit

Signed-off-by: David Bunn <[email protected]>

---------

Signed-off-by: David Bunn <[email protected]>

* chore(deps): bump library/node from 21.6.1 to 21.6.2 in /test/container (#17316)

Bumps library/node from 21.6.1 to 21.6.2.

---
updated-dependencies:
- dependency-name: library/node
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: pasha-codefresh <[email protected]>

* fix: The argocd server api-content-type flag does not allow empty content-type header (#17331)

Signed-off-by: Alexander Matyushentsev <[email protected]>

* fix(ui): The tiles in Applications List are too wide #17220 (#17340)

* fix(ui): The tiles in Applications List are too wide

Signed-off-by: Rafal Pelczar <[email protected]>

* change min width of app tiles

Signed-off-by: Rafal Pelczar <[email protected]>

---------

Signed-off-by: Rafal Pelczar <[email protected]>

* chore(notifications): remove unneeded operations from templates (#17307)

* chore(deps): bump library/ubuntu in /test/container (#13409)

Bumps library/ubuntu from `9a0bdde` to `67211c1`.

---
updated-dependencies:
- dependency-name: library/ubuntu
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Signed-off-by: Michael Firestone <[email protected]>

* rm unneeded operations from templates

Signed-off-by: Michael Firestone <[email protected]>
Signed-off-by: Michael Firestone <[email protected]>

* rm more unneeded ops

Signed-off-by: Michael Firestone <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Michael Firestone <[email protected]>
Signed-off-by: Michael Firestone <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Michael Firestone <[email protected]>

* feat: allow webhook settings to be referenced by external secret (#16262)

Signed-off-by: Arthur Outhenin-Chalandre <[email protected]>

* feat: Add app data to sharding cache to allow sharding by apps (#17014)

* Adding app list to sharding cache

Signed-off-by: Andrew Lee <[email protected]>

* Add shard by apps test

Signed-off-by: Andrew Lee <[email protected]>

* Fix lint

Signed-off-by: Andrew Lee <[email protected]>

* Add coverage to test

Signed-off-by: Andrew Lee <[email protected]>

* Fix lint

Signed-off-by: Andrew Lee <[email protected]>

* Converted cluster/app accesors to private, add apps-in-any-namespace suport in shardingcache init, added read lock to GetAppDistribution

Signed-off-by: Andrew Lee <[email protected]>

* Fix tests

Signed-off-by: Andrew Lee <[email protected]>

---------

Signed-off-by: Andrew Lee <[email protected]>

* docs: Update USERS.md (#17371)

Hi, I added IABAI as using officially ArgoCD

Signed-off-by: Andrea Sannuto <[email protected]>

* feat: add cli commands to add/delete sourceNamespaces from AppProject (#17337)

* Add cli to add/delete sourceNamespaces

Signed-off-by: Raghavi Shirur <[email protected]>

* update command/comments

Signed-off-by: Raghavi Shirur <[email protected]>

* update command/comments(1)

Signed-off-by: Raghavi Shirur <[email protected]>

* update user-guide docs

Signed-off-by: Raghavi Shirur <[email protected]>

* Retrigger CI pipeline

Signed-off-by: Raghavi Shirur <[email protected]>

* add check for '*' & rename command to remove-source-namespace

Signed-off-by: Raghavi Shirur <[email protected]>

* update command/comments(2)

Signed-off-by: Raghavi Shirur <[email protected]>

* update command/comments(3)

Signed-off-by: Raghavi Shirur <[email protected]>

* Retrigger CI pipeline

Signed-off-by: Raghavi Shirur <[email protected]>

---------

Signed-off-by: Raghavi Shirur <[email protected]>

* feat: add ability to auto label clusters from k8s clusterinfo (#17289)

* feat: add ability to auto label clusters

This gives the ability to automatically label cluster secrets on a cluster-by-cluster basis. If `enableClusterInfoLabels` is set on a cluster secret, the controller will (eventually) label the cluster secret with the current k8s version detected by the cluster info.

This needs documentation, e2e tests, as well as CLI/UI additions.

Signed-off-by: Blake Pettersson <[email protected]>

* refactor: use labels instead of secret data

This is easier to work with, especially in the context where we need
this feature.

Signed-off-by: Blake Pettersson <[email protected]>

* docs: add description on how to use dynamic labeling

Signed-off-by: Blake Pettersson <[email protected]>

---------

Signed-off-by: Blake Pettersson <[email protected]>

* chore(ci): free up disk space for goreleaser (#17373)

Signed-off-by: Michael Crenshaw <[email protected]>

* fix(ui): Dark-mode-enhancements (#17241)

* dark-mode-enhancements

Signed-off-by: Surajyadav <[email protected]>

* monaco

Signed-off-by: Surajyadav <[email protected]>

---------

Signed-off-by: Surajyadav <[email protected]>
Signed-off-by: Suraj yadav <[email protected]>

* feat: add cli commands to add/remove sources for multi-source applications (#17310)

* Initial commit

Signed-off-by: ishitasequeira <[email protected]>

* add cli commands to add/remove sources for multi-source app

Signed-off-by: ishitasequeira <[email protected]>

* add checks

Signed-off-by: ishitasequeira <[email protected]>

* add docs

Signed-off-by: ishitasequeira <[email protected]>

* refactor code and update tests

Signed-off-by: ishitasequeira <[email protected]>

* add removed additional switch case

Signed-off-by: ishitasequeira <[email protected]>

* fix suggested nits

Signed-off-by: ishitasequeira <[email protected]>

---------

Signed-off-by: ishitasequeira <[email protected]>

* feat: enable users to run commands related to Argo Applications in any namespace (#17360)

* enable --app-namespace falg for application get command

Signed-off-by: Mangaal <[email protected]>

* enable --app-namespace falg for application diff command

Signed-off-by: Mangaal <[email protected]>

* enable --app-namespace falg for application wait command

Signed-off-by: Mangaal <[email protected]>

* enable --app-namespace falg for application rollback command

Signed-off-by: Mangaal <[email protected]>

* enable --app-namespace falg for application patch command

Signed-off-by: Mangaal <[email protected]>

* enable --app-namespace falg for application edit command

Signed-off-by: Mangaal <[email protected]>

* enable --app-namespace falg for application history command

Signed-off-by: Mangaal <[email protected]>

* enable --app-namespace falg for application sync  command

Signed-off-by: Mangaal <[email protected]>

* enable --app-namespace falg for application delete  command

Signed-off-by: Mangaal <[email protected]>

* cli doc generated

Signed-off-by: Mangaal <[email protected]>

---------

Signed-off-by: Mangaal <[email protected]>
Co-authored-by: Ishita Sequeira <[email protected]>

* fix: preserve escape codes in repo url of git webhook payload (#17376)

Signed-off-by: Eric Bissonnette <[email protected]>

* fix: disable rate limiting sompletely by default (#17355)

Signed-off-by: Soumya Ghosh Dastidar <[email protected]>

* docs: use service-name instead of service-id (#17389)

* use service-name instead of service-id

Signed-off-by: DongHo Jung <[email protected]>

* trigger CICD

Signed-off-by: DongHo Jung <[email protected]>

---------

Signed-off-by: DongHo Jung <[email protected]>

* feat: Allow Kustomize common labels to not apply to selectors (#17329)

* modify crds

Signed-off-by: Collin <[email protected]>
Signed-off-by: lets-call-n-walk <[email protected]>

* cmd opts and test

Signed-off-by: Collin <[email protected]>
Signed-off-by: lets-call-n-walk <[email protected]>

* kustomize build and test

Signed-off-by: Collin <[email protected]>
Signed-off-by: lets-call-n-walk <[email protected]>

* fix option order and add ancestry to users

Signed-off-by: lets-call-n-walk <[email protected]>

* fix users format

Signed-off-by: lets-call-n-walk <[email protected]>

* generated files

Signed-off-by: lets-call-n-walk <[email protected]>

* set flag value

Signed-off-by: lets-call-n-walk <[email protected]>

* modify crds

Signed-off-by: Collin <[email protected]>
Signed-off-by: lets-call-n-walk <[email protected]>

* chore(deps): bump library/registry in /test/container (#17317)

Bumps library/registry from `b209a41` to `f4e1b87`.

---
updated-dependencies:
- dependency-name: library/registry
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Signed-off-by: Collin <[email protected]>
Signed-off-by: lets-call-n-walk <[email protected]>

* generated files

Signed-off-by: lets-call-n-walk <[email protected]>

* add docs

Signed-off-by: lets-call-n-walk <[email protected]>

* fix doc

Signed-off-by: lets-call-n-walk <[email protected]>

* remove debug prints

Signed-off-by: lets-call-n-walk <[email protected]>

* fix autogen docs

Signed-off-by: lets-call-n-walk <[email protected]>

---------

Signed-off-by: Collin <[email protected]>
Signed-off-by: lets-call-n-walk <[email protected]>
Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Collin Walker <[email protected]>
Co-authored-by: Collin <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* fix(ui): Highlight failing containers in the UI (#17143)

* failing container icon added

Signed-off-by: Surajyadav <[email protected]>

* lint-fix

Signed-off-by: Surajyadav <[email protected]>

* ..

Signed-off-by: Surajyadav <[email protected]>

* tried yarn lint-fix

Signed-off-by: Surajyadav <[email protected]>

* margin

Signed-off-by: Surajyadav <[email protected]>

* running

Signed-off-by: Surajyadav <[email protected]>

---------

Signed-off-by: Surajyadav <[email protected]>

* fix(ui): application-summary-help-icon fix (#17385)

* Update application-summary.tsx

revision-history icon fix

Signed-off-by: Suraj yadav <[email protected]>

* icons

Signed-off-by: Surajyadav <[email protected]>

---------

Signed-off-by: Suraj yadav <[email protected]>
Signed-off-by: Surajyadav <[email protected]>

* chore: add more unit tests around useDiffCache function (#17404)

* chore: add more unit tests around useDiffCache function

Signed-off-by: Leonardo Luz Almeida <[email protected]>

* fix doc

Signed-off-by: Leonardo Luz Almeida <[email protected]>

---------

Signed-off-by: Leonardo Luz Almeida <[email protected]>

* fix(grpcproxy): parse headers contain colon (#13274) (#14294)

* fix(grpcproxy): parse headers contain colon

Signed-off-by: bogay <[email protected]>

* test(apiclient): headers in wrong format

Signed-off-by: bogay <[email protected]>

---------

Signed-off-by: bogay <[email protected]>
Co-authored-by: Blake Pettersson <[email protected]>

* docs: Fix some awkward phrasing in `core.md` (#17412)

Signed-off-by: Nate Douglas <[email protected]>

* docs (aks cluster): update workloadidentity documentation (#17401)

Signed-off-by: duncan485 <[email protected]>

* docs: remove repetitive words (#17430)

Signed-off-by: hishope <[email protected]>

* feat(cli): enable --app-namespace flag for argocd app subcommand (#17437)

* add --app-namespace flag for set/unset command

Signed-off-by: Mangaal <[email protected]>

* add --app-namespace flag for add-source/remove-source command

Signed-off-by: Mangaal <[email protected]>

* fix bug, handle array out of-bound when --source-index=len(source)

Signed-off-by: Mangaal <[email protected]>

* add documentation

Signed-off-by: Mangaal <[email protected]>

---------

Signed-off-by: Mangaal <[email protected]>

* docs: Clarify for `valueFiles` behaviour with `path` field (#17431)

This commit adds clarification by explaining that `valueFiles` must be a relative path to the root of sources, even if the `path` field is set.

Signed-off-by: Takahiro Suzuki <[email protected]>
Signed-off-by: tkasuz <[email protected]>

* docs: Small edits to `docs/user-guide/application-set.md` (#17434)

* Update application-set.md

Signed-off-by: Nate Douglas <[email protected]>

* Make example code consistent with examples elsewhere.

Signed-off-by: Nathan Douglas <[email protected]>

---------

Signed-off-by: Nate Douglas <[email protected]>
Signed-off-by: Natha…
mkieweg pushed a commit to mkieweg/argo-cd that referenced this pull request Jun 11, 2024
* chore(ci): run ci checks conditionally

This should prevent docs changes from having the need to run e2e tests
etc, and prevent backend changes from needing to run ui tests, and vice
versa.

This is similar to previous attempts (see argoproj#16706 and argoproj#13507), with the
difference here that we add the if checks on each _step_ rather than
each _job_ - the reason being that most of these jobs are required, and
if we skip whole jobs any PR which does this will be left hanging
indefinitely, so Github forces us to do this on a step level instead.

Signed-off-by: Blake Pettersson <[email protected]>

* chore(ci): run ci checks conditionally

Try conditional jobs, according to https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/troubleshooting-required-status-checks#handling-skipped-but-required-checks

Signed-off-by: Blake Pettersson <[email protected]>

* chore(ci): add composite test-e2e action

This is a workaround for the e2e tests which do not run yet report `pending` when they are actually skipped.

Signed-off-by: Blake Pettersson <[email protected]>

---------

Signed-off-by: Blake Pettersson <[email protected]>
Co-authored-by: Remington Breeze <[email protected]>
Co-authored-by: Ishita Sequeira <[email protected]>
Hariharasuthan99 pushed a commit to AmadeusITGroup/argo-cd that referenced this pull request Jun 16, 2024
* chore(ci): run ci checks conditionally

This should prevent docs changes from having the need to run e2e tests
etc, and prevent backend changes from needing to run ui tests, and vice
versa.

This is similar to previous attempts (see argoproj#16706 and argoproj#13507), with the
difference here that we add the if checks on each _step_ rather than
each _job_ - the reason being that most of these jobs are required, and
if we skip whole jobs any PR which does this will be left hanging
indefinitely, so Github forces us to do this on a step level instead.

Signed-off-by: Blake Pettersson <[email protected]>

* chore(ci): run ci checks conditionally

Try conditional jobs, according to https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/troubleshooting-required-status-checks#handling-skipped-but-required-checks

Signed-off-by: Blake Pettersson <[email protected]>

* chore(ci): add composite test-e2e action

This is a workaround for the e2e tests which do not run yet report `pending` when they are actually skipped.

Signed-off-by: Blake Pettersson <[email protected]>

---------

Signed-off-by: Blake Pettersson <[email protected]>
Co-authored-by: Remington Breeze <[email protected]>
Co-authored-by: Ishita Sequeira <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants