From e6a6cae4c06ab6738af20845651835091d1c9cb4 Mon Sep 17 00:00:00 2001 From: "Kostis (Codefresh)" <39800303+kostis-codefresh@users.noreply.github.com> Date: Wed, 13 Jul 2022 18:09:03 +0300 Subject: [PATCH] docs: supported versions (#9876) * docs: supported versions Signed-off-by: Kostis Kapelonis * docs: supported versions feedback Signed-off-by: Kostis Kapelonis --- docs/operator-manual/installation.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/docs/operator-manual/installation.md b/docs/operator-manual/installation.md index 3b6f8f028f032..3af962adc7060 100644 --- a/docs/operator-manual/installation.md +++ b/docs/operator-manual/installation.md @@ -81,3 +81,20 @@ resources: The Argo CD can be installed using [Helm](https://helm.sh/). The Helm chart is currently community maintained and available at [argo-helm/charts/argo-cd](https://github.com/argoproj/argo-helm/tree/master/charts/argo-cd). + +## Supported versions + +Similar to the Kubernetes project, the supported versions of Argo CD at any given point in time are the latest patch releases for the N +and N - 1 minor versions. +These Argo CD versions are supported on the same versions of Kubernetes that are supported by Kubernetes itself (normally the last 3 released versions). + +Essentially the Argo CD project follows the same support scheme as Kubernetes but for N, N-1 while Kubernetes supports N, N-1, N-2 versions. + +For example if the latest minor version of ArgoCD are 2.4.3 and 2.3.5 while supported Kubernetes versions are 1.24, 1.23 and 1.22 then the following combinations are supported: + +* Argo CD 2.4.3 on Kubernetes 1.24 +* Argo CD 2.4.3 on Kubernetes 1.23 +* Argo CD 2.4.3 on Kubernetes 1.22 +* Argo CD 2.3.5 on Kubernetes 1.24 +* Argo CD 2.3.5 on Kubernetes 1.23 +* Argo CD 2.3.5 on Kubernetes 1.22 \ No newline at end of file