github.com/argoproj/argo-cd@v1.8.7/docs/operator-manual/upgrading/overview.md (about) 1 # Overview 2 3 !!!note 4 5 This section contains information on upgrading Argo CD. Before upgrading please make sure to read details about 6 the breaking changes between Argo CD versions. 7 8 Argo CD uses the semver versioning and ensures that following rules: 9 10 * The patch release does not introduce any breaking changes. So if you are upgrading from v1.5.1 to v1.5.3 11 there should be no special instructions to follow. 12 * The minor release might introduce minor changes with a workaround. If you are upgrading from v1.3.0 to v1.5.2 13 please make sure to check upgrading details in both [v1.3 to v1.4](./1.3-1.4.md) and [v1.4 to v1.5](./1.4-1.5.md) 14 upgrading instructions. 15 * The major release introduces backward incompatible behavior changes. It is recommended to take a backup of 16 Argo CD settings using disaster recovery [guide](../disaster_recovery.md). 17 18 After reading the relevant notes about possible breaking changes introduced in Argo CD version use the following 19 command to upgrade Argo CD. Make sure to replace `<version>` with the required version number: 20 21 **Non-HA**: 22 23 ```bash 24 kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/<version>/manifests/install.yaml 25 ``` 26 27 **HA**: 28 ```bash 29 kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/<version>/manifests/ha/install.yaml 30 ``` 31 32 !!! warning 33 34 Even though some releases require only image change it is still recommended to apply whole manifests set. 35 Manifest changes might include important parameter modifications and applying the whole set will protect you from 36 introducing misconfiguration. 37 38 <hr/> 39 40 * [v1.7 to v1.8](./1.7-1.8.md) 41 * [v1.6 to v1.7](./1.6-1.7.md) 42 * [v1.5 to v1.6](./1.5-1.6.md) 43 * [v1.4 to v1.5](./1.4-1.5.md) 44 * [v1.3 to v1.4](./1.3-1.4.md) 45 * [v1.2 to v1.3](./1.2-1.3.md) 46 * [v1.1 to v1.2](./1.1-1.2.md) 47 * [v1.0 to v1.1](./1.0-1.1.md)