-
Notifications
You must be signed in to change notification settings - Fork 2k
fix(argo-cd): do not use hardcoded commit server URL #3367
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(argo-cd): do not use hardcoded commit server URL #3367
Conversation
3bd9bfe to
4b19374
Compare
This commit adds the required template logic to the Argo CD Helm chart to use the proper, release name dependent URL for the commit server. The current implementation uses the default hardcoded URL `argocd-commit-server:8086` from <https://github.com/argoproj/argo-cd/blob/v3.0.9/common/common.go#L31>. Signed-off-by: Alexej Disterhoft <[email protected]>
Signed-off-by: Alexej Disterhoft <[email protected]>
Signed-off-by: Alexej Disterhoft <[email protected]>
284ef73 to
5a969c8
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
Addresses the hardcoded commit server URL by making the service port and port name configurable, propagating the dynamic address into presets and controller environments, and bumping the chart version.
- Introduce
commitServer.service.portandportNamevalues invalues.yaml - Update Service template to use those values, add env var in application-controller, and set the
commit.serverpreset in helpers - Bump chart version to 8.1.2, update documentation and changelog
Reviewed Changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| charts/argo-cd/values.yaml | Added commitServer.service.port and portName entries to replace the hardcoded port |
| charts/argo-cd/templates/argocd-commit-server/service.yaml | Templatized Service port name and port values |
| charts/argo-cd/templates/argocd-application-controller/statefulset.yaml | Inject ARGOCD_APPLICATION_CONTROLLER_COMMIT_SERVER via ConfigMap |
| charts/argo-cd/templates/argocd-application-controller/deployment.yaml | Inject ARGOCD_APPLICATION_CONTROLLER_COMMIT_SERVER via ConfigMap |
| charts/argo-cd/templates/_helpers.tpl | Set the commit.server preset dynamically based on service fullname and port |
| charts/argo-cd/README.md | Documented the new commitServer.service.port and portName values |
| charts/argo-cd/Chart.yaml | Bumped chart version to 8.1.2 and updated the changelog entry |
Comments suppressed due to low confidence (1)
charts/argo-cd/templates/argocd-commit-server/service.yaml:23
- Hardcoding the targetPort value to "server" breaks custom portName overrides. Use the templated portName (e.g.,
{{ .Values.commitServer.service.portName }}) instead of a static string.
targetPort: server
| - name: ARGOCD_APPLICATION_CONTROLLER_COMMIT_SERVER | ||
| valueFrom: | ||
| configMapKeyRef: | ||
| name: argocd-cmd-params-cm | ||
| key: commit.server | ||
| optional: true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Though Argo CD itself has interface for this, ref, we follow upstream's manifests. Could you please refactor the upstream's manifest at first? Once upstream releases it, we will also follow it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right, thanks for the heads up - I've raised a PR with the required changes upstream: argoproj/argo-cd#23536
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fyi: upstream changes have been merged
mkilchhofer
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think since the changes are already accepted upstream and it only added the env vars (no new Golang logic), we can already merge this even before upstream releases a new version.
LGTM and thanks @nobbs for your contribution
yu-croco
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for your contribution!
* fix(argo-cd): do not use hardcoded commit server URL This commit adds the required template logic to the Argo CD Helm chart to use the proper, release name dependent URL for the commit server. The current implementation uses the default hardcoded URL `argocd-commit-server:8086` from <https://github.com/argoproj/argo-cd/blob/v3.0.9/common/common.go#L31>. Signed-off-by: Alexej Disterhoft <[email protected]> * chore(argo-cd): update version to 8.1.2 Signed-off-by: Alexej Disterhoft <[email protected]> * docs(argo-cd): add commit server service port and port name to README Signed-off-by: Alexej Disterhoft <[email protected]> --------- Signed-off-by: Alexej Disterhoft <[email protected]>
…er (#3365) * chore(deps): update renovatebot/github-action action to v43 (#3363) Signed-off-by: Yarin Golzar <[email protected]> * added VerticalPodAutoscaler support for application controller #3232 Signed-off-by: Yarin Golzar <[email protected]> * removed trailing spaces Signed-off-by: Yarin Golzar <[email protected]> * chore(deps): update renovatebot/github-action action to v43.0.1 (#3366) Signed-off-by: Yarin Golzar <[email protected]> * fix(argo-cd): do not use hardcoded commit server URL (#3367) * fix(argo-cd): do not use hardcoded commit server URL This commit adds the required template logic to the Argo CD Helm chart to use the proper, release name dependent URL for the commit server. The current implementation uses the default hardcoded URL `argocd-commit-server:8086` from <https://github.com/argoproj/argo-cd/blob/v3.0.9/common/common.go#L31>. Signed-off-by: Alexej Disterhoft <[email protected]> * chore(argo-cd): update version to 8.1.2 Signed-off-by: Alexej Disterhoft <[email protected]> * docs(argo-cd): add commit server service port and port name to README Signed-off-by: Alexej Disterhoft <[email protected]> --------- Signed-off-by: Alexej Disterhoft <[email protected]> * chore(deps): bump github/codeql-action from 3.29.0 to 3.29.1 in the dependencies group (#3370) chore(deps): bump github/codeql-action in the dependencies group Bumps the dependencies group with 1 update: [github/codeql-action](https://github.com/github/codeql-action). Updates `github/codeql-action` from 3.29.0 to 3.29.1 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@ce28f5b...39edc49) --- updated-dependencies: - dependency-name: github/codeql-action dependency-version: 3.29.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Signed-off-by: Yarin Golzar <[email protected]> * chore(deps): update renovatebot/github-action action to v43.0.2 (#3371) Signed-off-by: Yarin Golzar <[email protected]> * chore(deps): update ghcr.io/renovatebot/renovate docker tag to v41 (#3373) Signed-off-by: argoproj-renovate[bot] <161757507+argoproj-renovate[bot]@users.noreply.github.com> Co-authored-by: argoproj-renovate[bot] <161757507+argoproj-renovate[bot]@users.noreply.github.com> Signed-off-by: Yarin Golzar <[email protected]> * chore(deps): bump github/codeql-action from 3.29.1 to 3.29.2 in the dependencies group (#3378) chore(deps): bump github/codeql-action in the dependencies group Bumps the dependencies group with 1 update: [github/codeql-action](https://github.com/github/codeql-action). Updates `github/codeql-action` from 3.29.1 to 3.29.2 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@39edc49...181d5ee) --- updated-dependencies: - dependency-name: github/codeql-action dependency-version: 3.29.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Signed-off-by: Yarin Golzar <[email protected]> * feat(argo-rollouts): Support ability to set .Values.namespaceOverride (#3375) Signed-off-by: Yarin Golzar <[email protected]> * updated docs to match vpa default values settings Signed-off-by: Yarin Golzar <[email protected]> * chore(argo-cd): Update dependency argoproj/argo-cd to v3.0.11 (#3380) --------- Signed-off-by: Yarin Golzar <[email protected]> Signed-off-by: Alexej Disterhoft <[email protected]> Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: argoproj-renovate[bot] <161757507+argoproj-renovate[bot]@users.noreply.github.com> Signed-off-by: Yarin Golzar <[email protected]> Signed-off-by: Marco Maurer (-Kilchhofer) <[email protected]> Co-authored-by: argoproj-renovate[bot] <161757507+argoproj-renovate[bot]@users.noreply.github.com> Co-authored-by: Yarin Golzar <[email protected]> Co-authored-by: Alexej Disterhoft <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: tcaenen <[email protected]> Co-authored-by: Marco Maurer (-Kilchhofer) <[email protected]>
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [argo-cd](https://github.com/argoproj/argo-helm) | major | `8.0.17` -> `9.0.5` | --- ### Release Notes <details> <summary>argoproj/argo-helm (argo-cd)</summary> ### [`v9.0.5`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-9.0.5) [Compare Source](argoproj/argo-helm@argo-cd-9.0.4...argo-cd-9.0.5) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - fix(argo-cd): Add backendRefs group and kind to HTTPRoute by [@​cskinfill](https://github.com/cskinfill) in [#​3536](argoproj/argo-helm#3536) #### New Contributors - [@​cskinfill](https://github.com/cskinfill) made their first contribution in [#​3536](argoproj/argo-helm#3536) **Full Changelog**: <argoproj/argo-helm@argo-cd-9.0.4...argo-cd-9.0.5> ### [`v9.0.4`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-9.0.4) [Compare Source](argoproj/argo-helm@argo-cd-9.0.3...argo-cd-9.0.4) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - fix(argo-cd): Update notification deployment to include checksum by [@​jpaulodit](https://github.com/jpaulodit) in [#​3549](argoproj/argo-helm#3549) #### New Contributors - [@​jpaulodit](https://github.com/jpaulodit) made their first contribution in [#​3549](argoproj/argo-helm#3549) **Full Changelog**: <argoproj/argo-helm@argocd-image-updater-0.14.0...argo-cd-9.0.4> ### [`v9.0.3`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-9.0.3) [Compare Source](argoproj/argo-helm@argo-cd-9.0.2...argo-cd-9.0.3) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - docs(argo-cd): Add context to Changelog in README for v9.0.0 by [@​yu-croco](https://github.com/yu-croco) in [#​3547](argoproj/argo-helm#3547) **Full Changelog**: <argoproj/argo-helm@argo-cd-9.0.2...argo-cd-9.0.3> ### [`v9.0.2`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-9.0.2) [Compare Source](argoproj/argo-helm@argo-cd-9.0.1...argo-cd-9.0.2) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - chore(deps): bump github/codeql-action from 4.30.8 to 4.30.9 in the dependencies group by [@​dependabot](https://github.com/dependabot)\[bot] in [#​3542](argoproj/argo-helm#3542) - chore(deps): update renovatebot/github-action action to v43.0.18 by [@​argoproj-renovate](https://github.com/argoproj-renovate)\[bot] in [#​3544](argoproj/argo-helm#3544) - docs(argo-cd): Correct Changelog in README for v9.0.0 by [@​yu-croco](https://github.com/yu-croco) in [#​3546](argoproj/argo-helm#3546) **Full Changelog**: <argoproj/argo-helm@argo-cd-9.0.1...argo-cd-9.0.2> ### [`v9.0.1`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-9.0.1) [Compare Source](argoproj/argo-helm@argo-cd-9.0.0...argo-cd-9.0.1) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - chore(argo-cd): Update dependency argoproj/argo-cd to v3.1.9 by [@​argoproj-renovate](https://github.com/argoproj-renovate)\[bot] in [#​3541](argoproj/argo-helm#3541) **Full Changelog**: <argoproj/argo-helm@argo-cd-9.0.0...argo-cd-9.0.1> ### [`v9.0.0`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-9.0.0) [Compare Source](argoproj/argo-helm@argo-cd-8.6.4...argo-cd-9.0.0) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - fix(argo-cd): Align default values of argocd-cmd-params-cm ConfigMap to upstream by [@​yu-croco](https://github.com/yu-croco) in [#​3540](argoproj/argo-helm#3540) **Full Changelog**: <argoproj/argo-helm@argo-cd-8.6.4...argo-cd-9.0.0> ### [`v8.6.4`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-8.6.4) [Compare Source](argoproj/argo-helm@argo-cd-8.6.3...argo-cd-8.6.4) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - chore(argo-cd): Update ghcr.io/oliver006/redis\_exporter Docker tag to v1.79.0 by [@​argoproj-renovate](https://github.com/argoproj-renovate)\[bot] in [#​3539](argoproj/argo-helm#3539) **Full Changelog**: <argoproj/argo-helm@argo-cd-8.6.3...argo-cd-8.6.4> ### [`v8.6.3`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-8.6.3) [Compare Source](argoproj/argo-helm@argo-cd-8.6.2...argo-cd-8.6.3) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - fix(argo-cd): Add extraArgs to secretInit job by [@​kabooboo](https://github.com/kabooboo) in [#​3533](argoproj/argo-helm#3533) #### New Contributors - [@​kabooboo](https://github.com/kabooboo) made their first contribution in [#​3533](argoproj/argo-helm#3533) **Full Changelog**: <argoproj/argo-helm@argo-cd-8.6.2...argo-cd-8.6.3> ### [`v8.6.2`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-8.6.2) [Compare Source](argoproj/argo-helm@argo-cd-8.6.1...argo-cd-8.6.2) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - fix(argo-cd): Add runtimeClassName on redis init job by [@​juldrixx](https://github.com/juldrixx) in [#​3532](argoproj/argo-helm#3532) #### New Contributors - [@​juldrixx](https://github.com/juldrixx) made their first contribution in [#​3532](argoproj/argo-helm#3532) **Full Changelog**: <argoproj/argo-helm@argo-workflows-0.45.27...argo-cd-8.6.2> ### [`v8.6.1`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-8.6.1) [Compare Source](argoproj/argo-helm@argo-cd-8.6.0...argo-cd-8.6.1) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - chore(deps): bump github/codeql-action from 3.30.6 to 4.30.8 by [@​dependabot](https://github.com/dependabot)\[bot] in [#​3527](argoproj/argo-helm#3527) - chore(deps): update renovatebot/github-action action to v43.0.17 by [@​argoproj-renovate](https://github.com/argoproj-renovate)\[bot] in [#​3528](argoproj/argo-helm#3528) - docs(argo-cd): Add AKS Web Application Routing ingress example by [@​downfa11](https://github.com/downfa11) in [#​3529](argoproj/argo-helm#3529) #### New Contributors - [@​downfa11](https://github.com/downfa11) made their first contribution in [#​3529](argoproj/argo-helm#3529) **Full Changelog**: <argoproj/argo-helm@argo-cd-8.6.0...argo-cd-8.6.1> ### [`v8.6.0`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-8.6.0) [Compare Source](argoproj/argo-helm@argo-cd-8.5.10...argo-cd-8.6.0) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - feat(argo-cd): Add HTTPRoute support for Gateway API by [@​lexfrei](https://github.com/lexfrei) in [#​3517](argoproj/argo-helm#3517) **Full Changelog**: <argoproj/argo-helm@argocd-image-updater-0.13.0...argo-cd-8.6.0> ### [`v8.5.10`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-8.5.10) [Compare Source](argoproj/argo-helm@argo-cd-8.5.9...argo-cd-8.5.10) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - fix(argo-cd): Bump redis version due to CVE-2025-49844 by [@​yu-croco](https://github.com/yu-croco) in [#​3524](argoproj/argo-helm#3524) **Full Changelog**: <argoproj/argo-helm@argo-cd-8.5.9...argo-cd-8.5.10> ### [`v8.5.9`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-8.5.9) [Compare Source](argoproj/argo-helm@argo-cd-8.5.8...argo-cd-8.5.9) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - chore(deps): bump the dependencies group with 4 updates by [@​dependabot](https://github.com/dependabot)\[bot] in [#​3516](argoproj/argo-helm#3516) - chore(deps): update renovatebot/github-action action to v43.0.15 by [@​argoproj-renovate](https://github.com/argoproj-renovate)\[bot] in [#​3519](argoproj/argo-helm#3519) - chore(argo-cd): Update ghcr.io/oliver006/redis\_exporter Docker tag to v1.78.0 by [@​argoproj-renovate](https://github.com/argoproj-renovate)\[bot] in [#​3521](argoproj/argo-helm#3521) **Full Changelog**: <argoproj/argo-helm@argo-rollouts-2.40.5...argo-cd-8.5.9> ### [`v8.5.8`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-8.5.8) [Compare Source](argoproj/argo-helm@argo-cd-8.5.7...argo-cd-8.5.8) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - chore(deps): bump github/codeql-action from 3.30.3 to 3.30.5 in the dependencies group by [@​dependabot](https://github.com/dependabot)\[bot] in [#​3508](argoproj/argo-helm#3508) - chore(deps): update renovatebot/github-action action to v43.0.14 by [@​argoproj-renovate](https://github.com/argoproj-renovate)\[bot] in [#​3509](argoproj/argo-helm#3509) - chore(argo-cd): Update dependency argoproj/argo-cd to v3.1.8 by [@​argoproj-renovate](https://github.com/argoproj-renovate)\[bot] in [#​3512](argoproj/argo-helm#3512) **Full Changelog**: <argoproj/argo-helm@argo-cd-8.5.7...argo-cd-8.5.8> ### [`v8.5.7`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-8.5.7) [Compare Source](argoproj/argo-helm@argo-cd-8.5.6...argo-cd-8.5.7) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - feat(argo-cd): Allow configuring resource requests/limits for copyutil initContainer in repo-server pod by [@​puretension](https://github.com/puretension) in [#​3507](argoproj/argo-helm#3507) **Full Changelog**: <argoproj/argo-helm@argo-cd-8.5.6...argo-cd-8.5.7> ### [`v8.5.6`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-8.5.6) [Compare Source](argoproj/argo-helm@argo-cd-8.5.5...argo-cd-8.5.6) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - fix(argo-cd): Add missing environment variable for v3.1.7 by [@​yu-croco](https://github.com/yu-croco) in [#​3505](argoproj/argo-helm#3505) **Full Changelog**: <argoproj/argo-helm@argo-cd-8.5.5...argo-cd-8.5.6> ### [`v8.5.5`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-8.5.5) [Compare Source](argoproj/argo-helm@argo-cd-8.5.4...argo-cd-8.5.5) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - chore(argo-cd): Update dependency argoproj/argo-cd to v3.1.7 by [@​argoproj-renovate](https://github.com/argoproj-renovate)\[bot] in [#​3503](argoproj/argo-helm#3503) **Full Changelog**: <argoproj/argo-helm@argo-cd-8.5.4...argo-cd-8.5.5> ### [`v8.5.4`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-8.5.4) [Compare Source](argoproj/argo-helm@argo-cd-8.5.3...argo-cd-8.5.4) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - chore(deps): update renovatebot/github-action action to v43.0.13 by [@​argoproj-renovate](https://github.com/argoproj-renovate)\[bot] in [#​3502](argoproj/argo-helm#3502) - fix(argo-cd): Fix repo-server NetworkPolicy to allow metrics port access without requiring separate metrics service by [@​puretension](https://github.com/puretension) in [#​3501](argoproj/argo-helm#3501) **Full Changelog**: <argoproj/argo-helm@argo-cd-8.5.3...argo-cd-8.5.4> ### [`v8.5.3`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-8.5.3) [Compare Source](argoproj/argo-helm@argo-cd-8.5.2...argo-cd-8.5.3) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - feat(argo-cd): add custom roleRules support for application-controller by [@​puretension](https://github.com/puretension) in [#​3500](argoproj/argo-helm#3500) **Full Changelog**: <argoproj/argo-helm@argo-cd-8.5.2...argo-cd-8.5.3> ### [`v8.5.2`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-8.5.2) [Compare Source](argoproj/argo-helm@argo-cd-8.5.1...argo-cd-8.5.2) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - chore(argo-cd): Update dependency argoproj/argo-cd to v3.1.6 by [@​argoproj-renovate](https://github.com/argoproj-renovate)\[bot] in [#​3495](argoproj/argo-helm#3495) **Full Changelog**: <argoproj/argo-helm@argo-cd-8.5.1...argo-cd-8.5.2> ### [`v8.5.1`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-8.5.1) [Compare Source](argoproj/argo-helm@argo-cd-8.5.0...argo-cd-8.5.1) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - ci(argo-cd): Replace Bitnami redis with simple YAML file by [@​mkilchhofer](https://github.com/mkilchhofer) in [#​3497](argoproj/argo-helm#3497) **Full Changelog**: <argoproj/argo-helm@argo-workflows-0.45.26...argo-cd-8.5.1> ### [`v8.5.0`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-8.5.0) [Compare Source](argoproj/argo-helm@argo-cd-8.4.1...argo-cd-8.5.0) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - fix(argo-cd): Adding the size limit for emptyDir in statefulset of argocd-application-controller by [@​Ghost21899](https://github.com/Ghost21899) in [#​3281](argoproj/argo-helm#3281) #### New Contributors - [@​Ghost21899](https://github.com/Ghost21899) made their first contribution in [#​3281](argoproj/argo-helm#3281) **Full Changelog**: <argoproj/argo-helm@argo-cd-8.4.1...argo-cd-8.5.0> ### [`v8.4.1`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-8.4.1) [Compare Source](argoproj/argo-helm@argo-cd-8.4.0...argo-cd-8.4.1) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - fix(argo-cd): add allowed audiences parameter to values.yaml by [@​Crowley723](https://github.com/Crowley723) in [#​3299](argoproj/argo-helm#3299) #### New Contributors - [@​Crowley723](https://github.com/Crowley723) made their first contribution in [#​3299](argoproj/argo-helm#3299) **Full Changelog**: <argoproj/argo-helm@argo-cd-8.4.0...argo-cd-8.4.1> ### [`v8.4.0`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-8.4.0) [Compare Source](argoproj/argo-helm@argo-cd-8.3.9...argo-cd-8.4.0) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - feat(argo-cd): VerticalPodAutoscaler support for application controller by [@​yaringol](https://github.com/yaringol) in [#​3365](argoproj/argo-helm#3365) #### New Contributors - [@​yaringol](https://github.com/yaringol) made their first contribution in [#​3365](argoproj/argo-helm#3365) **Full Changelog**: <argoproj/argo-helm@argo-workflows-0.45.25...argo-cd-8.4.0> ### [`v8.3.9`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-8.3.9) [Compare Source](argoproj/argo-helm@argo-cd-8.3.8...argo-cd-8.3.9) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - chore(deps): update renovatebot/github-action action to v43.0.12 by [@​argoproj-renovate](https://github.com/argoproj-renovate)\[bot] in [#​3491](argoproj/argo-helm#3491) - chore(deps): bump github/codeql-action from 3.30.1 to 3.30.3 in the dependencies group across 1 directory by [@​dependabot](https://github.com/dependabot)\[bot] in [#​3487](argoproj/argo-helm#3487) - fix(argo-cd): Update ingress class annotation for GKE compatibility by [@​tgigli](https://github.com/tgigli) in [#​3493](argoproj/argo-helm#3493) #### New Contributors - [@​tgigli](https://github.com/tgigli) made their first contribution in [#​3493](argoproj/argo-helm#3493) **Full Changelog**: <argoproj/argo-helm@argo-cd-8.3.8...argo-cd-8.3.9> ### [`v8.3.8`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-8.3.8) [Compare Source](argoproj/argo-helm@argo-cd-8.3.7...argo-cd-8.3.8) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - chore(deps): update actions/create-github-app-token action to v2.1.4 by [@​argoproj-renovate](https://github.com/argoproj-renovate)\[bot] in [#​3484](argoproj/argo-helm#3484) - docs(argo-cd): Add instruction how to override argocd-params-cm by [@​yu-croco](https://github.com/yu-croco) in [#​3490](argoproj/argo-helm#3490) **Full Changelog**: <argoproj/argo-helm@argo-cd-8.3.7...argo-cd-8.3.8> ### [`v8.3.7`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-8.3.7) [Compare Source](argoproj/argo-helm@argo-cd-8.3.6...argo-cd-8.3.7) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - chore(argo-cd): Update ghcr.io/oliver006/redis\_exporter Docker tag to v1.77.0 by [@​argoproj-renovate](https://github.com/argoproj-renovate)\[bot] in [#​3483](argoproj/argo-helm#3483) **Full Changelog**: <argoproj/argo-helm@argo-workflows-0.45.24...argo-cd-8.3.7> ### [`v8.3.6`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-8.3.6) [Compare Source](argoproj/argo-helm@argo-cd-8.3.5...argo-cd-8.3.6) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - chore(deps): bump github/codeql-action from 3.29.11 to 3.30.1 in the dependencies group by [@​dependabot](https://github.com/dependabot)\[bot] in [#​3468](argoproj/argo-helm#3468) - chore(deps): bump actions/setup-python from 5.6.0 to 6.0.0 by [@​dependabot](https://github.com/dependabot)\[bot] in [#​3469](argoproj/argo-helm#3469) - chore(deps): bump actions/labeler from 5.0.0 to 6.0.1 by [@​dependabot](https://github.com/dependabot)\[bot] in [#​3471](argoproj/argo-helm#3471) - chore(deps): bump actions/stale from 9.1.0 to 10.0.0 by [@​dependabot](https://github.com/dependabot)\[bot] in [#​3470](argoproj/argo-helm#3470) - docs(deps): Fix wrong link by [@​yu-croco](https://github.com/yu-croco) in [#​3472](argoproj/argo-helm#3472) - chore(deps): update renovatebot/github-action action to v43.0.11 by [@​argoproj-renovate](https://github.com/argoproj-renovate)\[bot] in [#​3473](argoproj/argo-helm#3473) - docs(deps): Add Version Support Policy by [@​yu-croco](https://github.com/yu-croco) in [#​3466](argoproj/argo-helm#3466) - chore(argo-cd): Update dependency argoproj/argo-cd to v3.1.5 by [@​argoproj-renovate](https://github.com/argoproj-renovate)\[bot] in [#​3478](argoproj/argo-helm#3478) **Full Changelog**: <argoproj/argo-helm@argo-cd-8.3.5...argo-cd-8.3.6> ### [`v8.3.5`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-8.3.5) [Compare Source](argoproj/argo-helm@argo-cd-8.3.4...argo-cd-8.3.5) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - chore(argo-cd): Update dependency argoproj/argo-cd to v3.1.4 by [@​argoproj-renovate](https://github.com/argoproj-renovate)\[bot] in [#​3467](argoproj/argo-helm#3467) **Full Changelog**: <argoproj/argo-helm@argo-cd-8.3.4...argo-cd-8.3.5> ### [`v8.3.4`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-8.3.4) [Compare Source](argoproj/argo-helm@argo-cd-8.3.3...argo-cd-8.3.4) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - chore(argo-cd): Update dependency argoproj/argo-cd to v3.1.3 by [@​argoproj-renovate](https://github.com/argoproj-renovate)\[bot] in [#​3463](argoproj/argo-helm#3463) **Full Changelog**: <argoproj/argo-helm@argo-cd-8.3.3...argo-cd-8.3.4> ### [`v8.3.3`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-8.3.3) [Compare Source](argoproj/argo-helm@argo-cd-8.3.2...argo-cd-8.3.3) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - chore(deps): update ghcr.io/renovatebot/renovate docker tag to v41.91.3 by [@​argoproj-renovate](https://github.com/argoproj-renovate)\[bot] in [#​3460](argoproj/argo-helm#3460) - chore(deps): update renovatebot/github-action action to v43.0.10 by [@​argoproj-renovate](https://github.com/argoproj-renovate)\[bot] in [#​3461](argoproj/argo-helm#3461) - chore(argo-cd): Update ghcr.io/dexidp/dex Docker tag to v2.44.0 by [@​argoproj-renovate](https://github.com/argoproj-renovate)\[bot] in [#​3462](argoproj/argo-helm#3462) **Full Changelog**: <argoproj/argo-helm@argo-cd-8.3.2...argo-cd-8.3.3> ### [`v8.3.2`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-8.3.2) [Compare Source](argoproj/argo-helm@argo-cd-8.3.1...argo-cd-8.3.2) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - chore(argo-cd): Update ghcr.io/oliver006/redis\_exporter Docker tag to v1.76.0 by [@​argoproj-renovate](https://github.com/argoproj-renovate)\[bot] in [#​3445](argoproj/argo-helm#3445) **Full Changelog**: <argoproj/argo-helm@argo-workflows-0.45.23...argo-cd-8.3.2> ### [`v8.3.1`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-8.3.1) [Compare Source](argoproj/argo-helm@argo-cd-8.3.0...argo-cd-8.3.1) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - chore(deps): update actions/checkout action to v5 by [@​argoproj-renovate](https://github.com/argoproj-renovate)\[bot] in [#​3426](argoproj/argo-helm#3426) - chore(deps): update actions/create-github-app-token action to v2.1.1 by [@​argoproj-renovate](https://github.com/argoproj-renovate)\[bot] in [#​3427](argoproj/argo-helm#3427) - chore(deps): bump the dependencies group across 1 directory with 3 updates by [@​dependabot](https://github.com/dependabot)\[bot] in [#​3430](argoproj/argo-helm#3430) - chore(deps): bump the dependencies group across 1 directory with 3 updates by [@​dependabot](https://github.com/dependabot)\[bot] in [#​3446](argoproj/argo-helm#3446) - chore(deps): update renovatebot/github-action action to v43.0.9 by [@​argoproj-renovate](https://github.com/argoproj-renovate)\[bot] in [#​3442](argoproj/argo-helm#3442) - chore(argo-cd): Update dependency argoproj/argo-cd to v3.1.1 by [@​argoproj-renovate](https://github.com/argoproj-renovate)\[bot] in [#​3450](argoproj/argo-helm#3450) **Full Changelog**: <argoproj/argo-helm@argo-cd-8.3.0...argo-cd-8.3.1> ### [`v8.3.0`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-8.3.0) [Compare Source](argoproj/argo-helm@argo-cd-8.2.7...argo-cd-8.3.0) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - feat(argo-cd): Upgrade Argo CD v3.1.0 by [@​yu-croco](https://github.com/yu-croco) in [#​3438](argoproj/argo-helm#3438) **Full Changelog**: <argoproj/argo-helm@argo-workflows-0.45.22...argo-cd-8.3.0> ### [`v8.2.7`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-8.2.7) [Compare Source](argoproj/argo-helm@argo-cd-8.2.6...argo-cd-8.2.7) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - chore(argo-cd): Update redis\_exporter for redis-ha by [@​yu-croco](https://github.com/yu-croco) in [#​3417](argoproj/argo-helm#3417) **Full Changelog**: <argoproj/argo-helm@argo-cd-8.2.6...argo-cd-8.2.7> ### [`v8.2.6`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-8.2.6) [Compare Source](argoproj/argo-helm@argo-cd-8.2.5...argo-cd-8.2.6) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - chore(deps): update renovatebot/github-action action to v43.0.6 by [@​argoproj-renovate](https://github.com/argoproj-renovate)\[bot] in [#​3416](argoproj/argo-helm#3416) - chore(argo-cd): Update ghcr.io/oliver006/redis\_exporter Docker tag to v1.75.0 by [@​argoproj-renovate](https://github.com/argoproj-renovate)\[bot] in [#​3419](argoproj/argo-helm#3419) **Full Changelog**: <argoproj/argo-helm@argo-rollouts-2.40.3...argo-cd-8.2.6> ### [`v8.2.5`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-8.2.5) [Compare Source](argoproj/argo-helm@argo-cd-8.2.4...argo-cd-8.2.5) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - docs(argo-cd): update NOTES.txt for conditional rootpath by [@​CHOUMnote](https://github.com/CHOUMnote) in [#​3407](argoproj/argo-helm#3407) #### New Contributors - [@​CHOUMnote](https://github.com/CHOUMnote) made their first contribution in [#​3407](argoproj/argo-helm#3407) **Full Changelog**: <argoproj/argo-helm@argo-cd-8.2.4...argo-cd-8.2.5> ### [`v8.2.4`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-8.2.4) [Compare Source](argoproj/argo-helm@argo-cd-8.2.3...argo-cd-8.2.4) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - chore(deps): update renovatebot/github-action action to v43.0.5 by [@​argoproj-renovate](https://github.com/argoproj-renovate)\[bot] in [#​3402](argoproj/argo-helm#3402) - fix(argo-cd): Fix inheritance of 'global.logging' values for the commit server component by [@​bonddim](https://github.com/bonddim) in [#​3404](argoproj/argo-helm#3404) #### New Contributors - [@​bonddim](https://github.com/bonddim) made their first contribution in [#​3404](argoproj/argo-helm#3404) **Full Changelog**: <argoproj/argo-helm@argo-cd-8.2.3...argo-cd-8.2.4> ### [`v8.2.3`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-8.2.3) [Compare Source](argoproj/argo-helm@argo-cd-8.2.2...argo-cd-8.2.3) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - chore(deps): bump github/codeql-action from 3.29.2 to 3.29.4 in the dependencies group by [@​dependabot](https://github.com/dependabot)\[bot] in [#​3400](argoproj/argo-helm#3400) - fix(argo-cd): correct typo 'Addtional' to 'Additional' in values.yaml by [@​in-jun](https://github.com/in-jun) in [#​3403](argoproj/argo-helm#3403) #### New Contributors - [@​in-jun](https://github.com/in-jun) made their first contribution in [#​3403](argoproj/argo-helm#3403) **Full Changelog**: <argoproj/argo-helm@argo-cd-8.2.2...argo-cd-8.2.3> ### [`v8.2.2`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-8.2.2) [Compare Source](argoproj/argo-helm@argo-cd-8.2.1...argo-cd-8.2.2) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - chore(argo-cd): Update dependency argoproj/argo-cd to v3.0.12 by [@​argoproj-renovate](https://github.com/argoproj-renovate)\[bot] in [#​3399](argoproj/argo-helm#3399) **Full Changelog**: <argoproj/argo-helm@argo-cd-8.2.1...argo-cd-8.2.2> ### [`v8.2.1`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-8.2.1) [Compare Source](argoproj/argo-helm@argo-cd-8.2.0...argo-cd-8.2.1) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - chore(argo-cd): Set file mode of YAML files to 644 by [@​lindhe](https://github.com/lindhe) in [#​3397](argoproj/argo-helm#3397) #### New Contributors - [@​lindhe](https://github.com/lindhe) made their first contribution in [#​3397](argoproj/argo-helm#3397) **Full Changelog**: <argoproj/argo-helm@argo-rollouts-2.40.2...argo-cd-8.2.1> ### [`v8.2.0`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-8.2.0) [Compare Source](argoproj/argo-helm@argo-cd-8.1.4...argo-cd-8.2.0) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - feat(argo-cd): Support ability to override `.global.networkPolicy.create` at the component level by [@​AswinT22](https://github.com/AswinT22) in [#​3382](argoproj/argo-helm#3382) #### New Contributors - [@​AswinT22](https://github.com/AswinT22) made their first contribution in [#​3382](argoproj/argo-helm#3382) **Full Changelog**: <argoproj/argo-helm@argo-cd-8.1.4...argo-cd-8.2.0> ### [`v8.1.4`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-8.1.4) [Compare Source](argoproj/argo-helm@argo-cd-8.1.3...argo-cd-8.1.4) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - chore(deps): update renovatebot/github-action action to v43.0.4 by [@​argoproj-renovate](https://github.com/argoproj-renovate)\[bot] in [#​3393](argoproj/argo-helm#3393) - docs(argo-cd): document admin password via helm.values in Application CR by [@​miinsun](https://github.com/miinsun) in [#​3390](argoproj/argo-helm#3390) #### New Contributors - [@​miinsun](https://github.com/miinsun) made their first contribution in [#​3390](argoproj/argo-helm#3390) **Full Changelog**: <argoproj/argo-helm@argo-workflows-0.45.20...argo-cd-8.1.4> ### [`v8.1.3`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-8.1.3) [Compare Source](argoproj/argo-helm@argo-cd-8.1.2...argo-cd-8.1.3) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - chore(argo-cd): Update dependency argoproj/argo-cd to v3.0.11 by [@​argoproj-renovate](https://github.com/argoproj-renovate) in [#​3380](argoproj/argo-helm#3380) **Full Changelog**: <argoproj/argo-helm@argo-rollouts-2.40.0...argo-cd-8.1.3> ### [`v8.1.2`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-8.1.2) [Compare Source](argoproj/argo-helm@argo-cd-8.1.1...argo-cd-8.1.2) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - chore(deps): update renovatebot/github-action action to v43 by [@​argoproj-renovate](https://github.com/argoproj-renovate) in [#​3363](argoproj/argo-helm#3363) - chore(deps): update renovatebot/github-action action to v43.0.1 by [@​argoproj-renovate](https://github.com/argoproj-renovate) in [#​3366](argoproj/argo-helm#3366) - fix(argo-cd): do not use hardcoded commit server URL by [@​nobbs](https://github.com/nobbs) in [#​3367](argoproj/argo-helm#3367) **Full Changelog**: <argoproj/argo-helm@argo-workflows-0.45.19...argo-cd-8.1.2> ### [`v8.1.1`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-8.1.1) [Compare Source](argoproj/argo-helm@argo-cd-8.1.0...argo-cd-8.1.1) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - feat(argo-cd): Add support for custom deployment labels by [@​akolacz](https://github.com/akolacz) in [#​3349](argoproj/argo-helm#3349) #### New Contributors - [@​akolacz](https://github.com/akolacz) made their first contribution in [#​3349](argoproj/argo-helm#3349) **Full Changelog**: <argoproj/argo-helm@argo-cd-8.1.0...argo-cd-8.1.1> ### [`v8.1.0`](https://github.com/argoproj/argo-helm/releases/tag/argo-cd-8.1.0) [Compare Source](argoproj/argo-helm@argo-cd-8.0.17...argo-cd-8.1.0) A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. #### What's Changed - docs(github): Add a PR checklist for PR unit by [@​yu-croco](https://github.com/yu-croco) in [#​3354](argoproj/argo-helm#3354) - chore(deps): bump github/codeql-action from 3.28.18 to 3.28.19 in the dependencies group by [@​dependabot](https://github.com/dependabot) in [#​3343](argoproj/argo-helm#3343) - chore(deps): update renovatebot/github-action action to v42.0.6 by [@​argoproj-renovate](https://github.com/argoproj-renovate) in [#​3357](argoproj/argo-helm#3357) - feat(argo-cd): support trafficDistribution in argo repo service by [@​kewei5zhang](https://github.com/kewei5zhang) in [#​3358](argoproj/argo-helm#3358) #### New Contributors - [@​kewei5zhang](https://github.com/kewei5zhang) made their first contribution in [#​3358](argoproj/argo-helm#3358) **Full Changelog**: <argoproj/argo-helm@argo-cd-8.0.17...argo-cd-8.1.0> </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNDAuMSIsInVwZGF0ZWRJblZlciI6IjQxLjE0MC4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Co-authored-by: Renovate Bot <[email protected]> Reviewed-on: https://git.malford.io/ops/homelab/pulls/12
Checklist: