Skip to content

Commit 3bd28c3

Browse files
author
Per Goncalves da Silva
committed
📖[Docs] How-to: Z-stream Automatic Updates
Signed-off-by: Per Goncalves da Silva <[email protected]>
1 parent 3a9868e commit 3bd28c3

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
## How-to: Z-Stream Automatic Updates
2+
3+
To restrict automatic updates to only z-stream patches and avoid breaking changes, use the `"~"` version range operator when setting the version for the desired package in Catalog source.
4+
5+
Example:
6+
7+
```yaml
8+
apiVersion: olm.operatorframework.io/v1alpha1
9+
kind: ClusterExtension
10+
metadata:
11+
name: argocd
12+
spec:
13+
installNamespace: argocd
14+
source:
15+
sourceType: Catalog
16+
catalog:
17+
packageName: argocd-operator
18+
version: “~2.3" # Automatically upgrade patch releases for v2.3
19+
serviceAccount:
20+
name: argocd-installer
21+
```
22+
23+
For more information on SemVer version ranges see [version ranges](version-ranges.md)

0 commit comments

Comments
 (0)