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
7 changes: 7 additions & 0 deletions codefresh/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2120,6 +2120,13 @@ mongodb:
enabled: false
```

#### ⚠️ New indexes in MongoDB

If you maintain indexes manually (i.e. [Auto-index creation](#enabling-auto-index-creation) is off) you must create the following indexes **before** the upgrade:

- [Database: `codefresh`, collection: `users`, index: `account_1__id_1`](https://github.com/codefresh-io/codefresh-onprem-helm/tree/release-2.8/indexes/codefresh/users.json#L2-L9)
- [Database: `codefresh`, collection: `users`, index: `role_1_account_1__id_1`](https://github.com/codefresh-io/codefresh-onprem-helm/tree/release-2.8/indexes/codefresh/users.json#L10-L17)

### PostgreSQL update

Default PostgreSQL image is changed from 13.x to 17.x
Expand Down
9 changes: 9 additions & 0 deletions codefresh/README.md.gotmpl
Original file line number Diff line number Diff line change
Expand Up @@ -2129,6 +2129,15 @@ mongodb:
enabled: false
```

#### ⚠️ New indexes in MongoDB


If you maintain indexes manually (i.e. [Auto-index creation](#enabling-auto-index-creation) is off) you must create the following indexes **before or right after** the upgrade:


- [Database: `codefresh`, collection: `users`, index: `account_1__id_1`](https://github.com/codefresh-io/codefresh-onprem-helm/tree/release-2.8/indexes/codefresh/users.json#L2-L9)
- [Database: `codefresh`, collection: `users`, index: `role_1_account_1__id_1`](https://github.com/codefresh-io/codefresh-onprem-helm/tree/release-2.8/indexes/codefresh/users.json#L10-L17)

### PostgreSQL update

Default PostgreSQL image is changed from 13.x to 17.x
Expand Down
Loading