ArgoProj Helm Charts
Find a file
Regina Voloshin fc633a7bbd
fix: upgrade to 7.7.14-1-cap-v2.13.3-2025.1.15-9f3c74c06 (#120)
* upgrade to 7.7.14-1-cap-v2.13.3-2025.1.15-9f3c74c06

Signed-off-by: reggie-k <regina.voloshin@codefresh.io>

* upgrade to 7.7.14-1-cap-v2.13.3-2025.1.15-9f3c74c06

Signed-off-by: reggie-k <regina.voloshin@codefresh.io>

---------

Signed-off-by: reggie-k <regina.voloshin@codefresh.io>
2025-01-15 12:49:07 +02:00
.github Merge branch 'tag-argocd-7.7.14' into CR-26737-argo-cd-helm-7.7.x 2025-01-08 17:25:57 +02:00
charts fix: upgrade to 7.7.14-1-cap-v2.13.3-2025.1.15-9f3c74c06 (#120) 2025-01-15 12:49:07 +02:00
scripts update argocd from upstream 2024-05-09 11:20:52 +03:00
.clomonitor.yml Release argo-cd 2.9.3 (#34) 2023-12-08 17:34:05 +02:00
.editorconfig chore(argo-rollouts): Upgrade argo-rollouts to 1.3.1 (#1500) 2022-10-01 00:29:03 +02:00
.gitignore added root values.yaml to gitignore 2024-05-12 18:29:12 +03:00
CODE_OF_CONDUCT.md chore(github): Update repo files (#2006) 2023-05-05 21:23:04 +01:00
CONTRIBUTING.md docs(argo-workflows): update documentation links to readthedocs (#2472) 2024-02-03 09:44:56 +09:00
EMERITUS.md Argo-cd 2.8 + merge upstream 5.46.2 (#21) 2023-09-12 17:37:00 +03:00
LICENSE Add readme file 2018-09-03 07:23:49 -07:00
README.md docs(github): Charts use Helm "Capabilities" (#2730) 2024-05-31 10:01:54 +01:00
renovate.json chore(github): Support redis-exporter to Renovate (#3105) 2025-01-05 04:56:16 +00:00
SECURITY-INSIGHTS.yml Release argo-cd 2.9.3 (#34) 2023-12-08 17:34:05 +02:00
SECURITY.md docs(argo-rollouts): update security policy for Argo Rollouts in SECURITY.md (#3034) 2024-11-15 10:04:53 +01:00

Argo Helm Charts

Slack License Chart Publish Artifact HUB CLOMonitor OpenSSF Scorecard OpenSSF Best Practices

Argo Helm is a collection of community maintained charts for https://argoproj.github.io projects. The charts can be added using following command:

helm repo add argo https://argoproj.github.io/argo-helm

Contributing

We'd love to have you contribute! Please refer to our contribution guidelines for details.

Custom resource definitions

Some users would prefer to install the CRDs outside of the chart. You can disable the CRD installation of the main four charts (argo-cd, argo-workflows, argo-events, argo-rollouts) by using --set crds.install=false when installing the chart.

Helm cannot upgrade custom resource definitions in the <chart>/crds folder by design. Our CRDs have been moved to <chart>/templates to address this design decision.

If you are using versions of a chart that have the CRDs in the root of the chart or have elected to manage the Argo CRDs outside of the chart, please use kubectl to upgrade CRDs manually from templates/crds folder or via the manifests from the upstream project repo:

Example:

kubectl apply -k "https://github.com/argoproj/argo-cd/manifests/crds?ref=<appVersion>"

# Eg. version v2.4.9
kubectl apply -k "https://github.com/argoproj/argo-cd/manifests/crds?ref=v2.4.9"

Security Policy

Please refer to SECURITY.md for details on how to report security issues.

Changelog

Releases are managed independently for each helm chart, and changelogs are tracked on each release. Read more about this process here.

Charts use Helm "Capabilities"

Our charts make use of the Helm built-in object "Capabilities":

This provides information about what capabilities the Kubernetes cluster supports.
Source: https://helm.sh/docs/chart_template_guide/builtin_objects/

Today we use:

  • .Capabilities.APIVersions.Has mostly to determine whether the CRDs for ServiceMonitors (from prometheus-operator) exists inside the cluster
  • .Capabilities.KubeVersion.Version to handle correct apiVersion of a specific resource kind (eg. "policy/v1" vs. "policy/v1beta1")

If you use the charts only to template the manifests, without installing (helm install ..), you need to make sure that Helm (or the Helm SDK) receives the available APIs from your Kubernetes cluster.

For this you need to pass the --api-versions parameter to the helm template command:

helm template argocd \
  oci://ghcr.io/argoproj/argo-helm/argo-cd \
  --api-versions monitoring.coreos.com/v1 \
  --values my-argocd-values.yaml

If you use other tools like Kustomize or helmfile to render it, there are equivalent options.

Example with Kustomize:

# kustomization.yaml
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization

helmCharts:
- name: argo-cd
  repo: oci://ghcr.io/argoproj/argo-helm
  version: x.y.z
  releaseName: argocd
  apiVersions:
  - monitoring.coreos.com/v1
  valuesFile: my-argocd-values.yaml

Example with helmfile:

# helmfile.yaml
repositories:
  - name: argo
    url: https://argoproj.github.io/argo-helm

apiVersions:
  - monitoring.coreos.com/v1

releases:
  - name: argocd
    namespace: argocd
    chart: argo/argo-cd
    values:
      - my-argocd-values.yaml