You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Helm chart for deploying [Codefresh On-Premises](https://codefresh.io/docs/docs/getting-started/intro-to-codefresh/) to Kubernetes.
6
6
@@ -40,6 +40,7 @@ Helm chart for deploying [Codefresh On-Premises](https://codefresh.io/docs/docs/
40
40
-[To 2.0.17](#to-2-0-17)
41
41
-[To 2.1.0](#to-2-1-0)
42
42
-[To 2.1.7](#to-2-1-7)
43
+
-[To 2.2.0](#to-2-2-0)
43
44
-[Rollback](#rollback)
44
45
-[Troubleshooting](#troubleshooting)
45
46
-[Values](#values)
@@ -1782,6 +1783,34 @@ cf-broadcaster:
1782
1783
1783
1784
> Versions prior to 2.1.7 are still available in ChartMuseum at `http://chartmuseum.codefresh.io/codefresh`
1784
1785
1786
+
### To 2.2.x
1787
+
1788
+
### [What's new in 2.2.x](https://codefresh.io/docs/docs/whats-new/on-prem-release-notes/#on-premises-version-22)
1789
+
1790
+
#### MongoDB 5.x
1791
+
1792
+
Codefresh On-Prem 2.2.x uses MongoDB 5.x (4.x is still supported). If you run external MongoDB, it is **highly** recommended to upgrade it to 5.x after upgrading Codefresh On-Prem to 2.2.x.
1793
+
1794
+
#### Redis HA
1795
+
1796
+
> If you run external Redis, this is not applicable to you.
1797
+
1798
+
Codefresh On-Prem 2.2.x adds (not replaces!) an **optional** Redis-HA (master/slave configuration with Sentinel sidecars for failover management) instead of a single Redis instance.
1799
+
To enable it, see the following values:
1800
+
1801
+
```yaml
1802
+
global:
1803
+
redisUrl: cf-redis-ha-haproxy # Replace `cf` with your Helm release name
1804
+
1805
+
# -- Disable standalone Redis instance
1806
+
redis:
1807
+
enabled: false
1808
+
1809
+
# -- Enable Redis HA
1810
+
redis-ha:
1811
+
enabled: true
1812
+
```
1813
+
1785
1814
## Rollback
1786
1815
1787
1816
Use `helm history` to determine which release has worked, then use `helm rollback` to perform a rollback
Copy file name to clipboardExpand all lines: codefresh/README.md.gotmpl
+28Lines changed: 28 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -40,6 +40,7 @@ Helm chart for deploying [Codefresh On-Premises](https://codefresh.io/docs/docs/
40
40
- [To 2.0.17](#to-2-0-17)
41
41
- [To 2.1.0](#to-2-1-0)
42
42
- [To 2.1.7](#to-2-1-7)
43
+
- [To 2.2.0](#to-2-2-0)
43
44
- [Rollback](#rollback)
44
45
- [Troubleshooting](#troubleshooting)
45
46
- [Values](#values)
@@ -1789,6 +1790,33 @@ cf-broadcaster:
1789
1790
1790
1791
> Versions prior to 2.1.7 are still available in ChartMuseum at `http://chartmuseum.codefresh.io/codefresh`
1791
1792
1793
+
### To 2.2.x
1794
+
1795
+
### [What's new in 2.2.x](https://codefresh.io/docs/docs/whats-new/on-prem-release-notes/#on-premises-version-22)
1796
+
1797
+
#### MongoDB 5.x
1798
+
1799
+
Codefresh On-Prem 2.2.x uses MongoDB 5.x (4.x is still supported). If you run external MongoDB, it is **highly** recommended to upgrade it to 5.x after upgrading Codefresh On-Prem to 2.2.x.
1800
+
1801
+
#### Redis HA
1802
+
1803
+
> If you run external Redis, this is not applicable to you.
1804
+
1805
+
Codefresh On-Prem 2.2.x adds (not replaces!) an **optional** Redis-HA (master/slave configuration with Sentinel sidecars for failover management) instead of a single Redis instance.
1806
+
To enable it, see the following values:
1807
+
1808
+
```yaml
1809
+
global:
1810
+
redisUrl: cf-redis-ha-haproxy # Replace `cf` with your Helm release name
0 commit comments