Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/gitops-runtime/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 0.2.3
description: A Helm chart for Codefresh gitops runtime
name: gitops-runtime
version: 0.29.6
version: 0.29.7
home: https://github.com/codefresh-io/gitops-runtime-helm
icon: https://avatars1.githubusercontent.com/u/11412079?v=3
keywords:
Expand Down
14 changes: 13 additions & 1 deletion charts/gitops-runtime/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
- [Codefresh official documentation](#codefresh-official-documentation)
- [Argo-workflows artifact and log storage](#argo-workflows-artifact-and-log-storage)
- [Installation with External ArgoCD](#installation-with-external-argocd)
- [ArgoCD compatibility](#argocd-compatibility)
- [Using with private registries - Helper utility](#using-with-private-registries---helper-utility)
- [Openshift](#openshift)
- [High Availability](#high-availability)
Expand Down Expand Up @@ -182,6 +183,17 @@ data:
admin.enabled: "true"
```

### ArgoCD compatibility

| GitOps Runtime version | Supported ArgoCD versions |
|------------------------|---------------------------|
| 0.29.x | >=3.1 <=3.3 |
| 0.28.x | >=3.0 <=3.2 |
| 0.27.x | >=3.0 <=3.2 |
| 0.26.x | >=3.0 <=3.2 |
| 0.25.x | >=2.12 <=3.0 |
| 0.24.x | >=2.12 <=3.0 |

## Using with private registries - Helper utility
The GitOps Runtime comprises multiple subcharts and container images. Subcharts also vary in values structure, making it difficult to override image specific values to use private registries.
We have created a helper utility to resolve this issue:
Expand Down Expand Up @@ -779,7 +791,7 @@ global:
| redis-ha.redis.config.save | string | `'""'` | Will save the DB if both the given number of seconds and the given number of write operations against the DB occurred. `""` is disabled |
| redis-ha.redis.masterGroupName | string | `"gitops-runtime"` | Redis convention for naming the cluster group: must match `^[\\w-\\.]+$` and can be templated |
| redis-ha.tolerations | list | `[]` | [Tolerations] for use with node taints for Redis pods. |
| redis-ha.topologySpreadConstraints | object | `{"enabled":false,"maxSkew":"","topologyKey":"","whenUnsatisfiable":""}` | Assign custom [TopologySpreadConstraints] rules to the Redis pods. # https://kubernetes.io/docs/concepts/scheduling-eviction/topology-spread-constraints/ |
| redis-ha.topologySpreadConstraints | object | `{"enabled":false,"maxSkew":"","topologyKey":"","whenUnsatisfiable":""}` | Assign custom [TopologySpreadConstraints] rules to the Redis pods. |
| redis-ha.topologySpreadConstraints.enabled | bool | `false` | Enable Redis HA topology spread constraints |
| redis-ha.topologySpreadConstraints.maxSkew | string | `""` (defaults to `1`) | Max skew of pods tolerated |
| redis-ha.topologySpreadConstraints.topologyKey | string | `""` (defaults to `topology.kubernetes.io/zone`) | Topology key for spread |
Expand Down
12 changes: 12 additions & 0 deletions charts/gitops-runtime/README.md.gotmpl
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
- [Codefresh official documentation](#codefresh-official-documentation)
- [Argo-workflows artifact and log storage](#argo-workflows-artifact-and-log-storage)
- [Installation with External ArgoCD](#installation-with-external-argocd)
- [ArgoCD compatibility](#argocd-compatibility)
- [Using with private registries - Helper utility](#using-with-private-registries---helper-utility)
- [Openshift](#openshift)
- [High Availability](#high-availability)
Expand Down Expand Up @@ -185,6 +186,17 @@ data:
admin.enabled: "true"
```

### ArgoCD compatibility

| GitOps Runtime version | Supported ArgoCD versions |
|------------------------|---------------------------|
| 0.29.x | >=3.1 <=3.3 |
| 0.28.x | >=3.0 <=3.2 |
| 0.27.x | >=3.0 <=3.2 |
| 0.26.x | >=3.0 <=3.2 |
| 0.25.x | >=2.12 <=3.0 |
| 0.24.x | >=2.12 <=3.0 |

## Using with private registries - Helper utility
The GitOps Runtime comprises multiple subcharts and container images. Subcharts also vary in values structure, making it difficult to override image specific values to use private registries.
We have created a helper utility to resolve this issue:
Expand Down
Loading