Skip to content

onprem: 2.8.0 #68

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 4, 2025
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
12 changes: 5 additions & 7 deletions codefresh/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
description: Helm Chart for Codefresh On-Prem
name: codefresh
version: 2.8.0-rc.3
version: 2.8.0
keywords:
- codefresh
home: https://codefresh.io/
Expand All @@ -11,17 +11,15 @@ sources:
maintainers:
- name: codefresh
url: https://codefresh-io.github.io/
appVersion: 2.7.0
appVersion: 2.8.0
annotations:
artifacthub.io/prerelease: "true"
artifacthub.io/prerelease: "false"
artifacthub.io/alternativeName: "codefresh-onprem"
# artifacthub.io/containsSecurityUpdates: "true"
# supported kinds are added, changed, deprecated, removed, fixed and security.
artifacthub.io/changes: |
- kind: fixed
description: "(cf-api): Fix internal feature-flags"
- kind: fixed
description: "Fix mongo-seed job with Mongo MTLS enabled"
- kind: added
description: "Documentation about index management in MongoDB"
dependencies:
- name: cf-common
repository: oci://quay.io/codefresh/charts
Expand Down
6 changes: 4 additions & 2 deletions codefresh/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Codefresh On-Premises

![Version: 2.8.0-rc.3](https://img.shields.io/badge/Version-2.8.0--rc.3-informational?style=flat-square) ![AppVersion: 2.7.0](https://img.shields.io/badge/AppVersion-2.7.0-informational?style=flat-square)
![Version: 2.8.0](https://img.shields.io/badge/Version-2.8.0-informational?style=flat-square) ![AppVersion: 2.8.0](https://img.shields.io/badge/AppVersion-2.8.0-informational?style=flat-square)

Helm chart for deploying [Codefresh On-Premises](https://codefresh.io/docs/docs/getting-started/intro-to-codefresh/) to Kubernetes.

Expand Down Expand Up @@ -205,7 +205,7 @@ The following table displays the list of **persistent** services created as part
| Database | Purpose | Required version |
| :--- | :---- | :--- |
| MongoDB | Stores all account data (account settings, users, projects, pipelines, builds etc.) | 7.x |
| Postgresql | Stores data about events for the account (pipeline updates, deletes, etc.). The audit log uses the data from this database. | 17.x |
| Postgresql | Stores data about events for the account (pipeline updates, deletes, etc.). The audit log uses the data from this database. | 16.x or 17.x |
| Redis | Used for caching, and as a key-value store for cron trigger manager. | 7.0.x |
| RabbitMQ | Used for message queueing. | 4.0.x |

Expand Down Expand Up @@ -2166,6 +2166,8 @@ Default PostgreSQL image is changed from 13.x to 17.x

If you run external PostgreSQL, follow the [official instructions](https://www.postgresql.org/docs/17/upgrading.html) to upgrade to 17.x.

⚠️ ⚠️ ⚠️ 16.x version is also supported (17.x version of PostgreSQL is still in preview on multiple cloud providers)

⚠️ ⚠️ ⚠️ If you run built-in PostgreSQL `bitnami/postgresql` subchart, direct upgrade is not supported due to **incompatible breaking changes** in the database files. You will see the following error in the logs:
```
postgresql 17:36:28.41 INFO ==> ** Starting PostgreSQL **
Expand Down
6 changes: 4 additions & 2 deletions codefresh/README.md.gotmpl
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ The following table displays the list of **persistent** services created as part
| Database | Purpose | Required version |
| :--- | :---- | :--- |
| MongoDB | Stores all account data (account settings, users, projects, pipelines, builds etc.) | 7.x |
| Postgresql | Stores data about events for the account (pipeline updates, deletes, etc.). The audit log uses the data from this database. | 17.x |
| Postgresql | Stores data about events for the account (pipeline updates, deletes, etc.). The audit log uses the data from this database. | 16.x or 17.x |
| Redis | Used for caching, and as a key-value store for cron trigger manager. | 7.0.x |
| RabbitMQ | Used for message queueing. | 4.0.x |

Expand Down Expand Up @@ -2093,7 +2093,7 @@ cfapi:
### To 2-7-0

> ⚠️ **WARNING! MongoDB indexes changed!**
>
>
> Please, follow [Maintaining MongoDB indexes](#maintaining-mongodb-indexes) guide to meet index requirements **BEFORE** the upgrade process.

### [What's new in 2.7.x](https://codefresh.io/docs/docs/whats-new/on-prem-release-notes/#on-premises-version-27)
Expand Down Expand Up @@ -2175,6 +2175,8 @@ Default PostgreSQL image is changed from 13.x to 17.x

If you run external PostgreSQL, follow the [official instructions](https://www.postgresql.org/docs/17/upgrading.html) to upgrade to 17.x.

⚠️ ⚠️ ⚠️ 16.x version is also supported (17.x version of PostgreSQL is still in preview on multiple cloud providers)

⚠️ ⚠️ ⚠️ If you run built-in PostgreSQL `bitnami/postgresql` subchart, direct upgrade is not supported due to **incompatible breaking changes** in the database files. You will see the following error in the logs:
```
postgresql 17:36:28.41 INFO ==> ** Starting PostgreSQL **
Expand Down