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
60 changes: 60 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Helm chart for deploying [Codefresh On-Premises](https://codefresh.io/docs/docs/
- [Prerequisites](#prerequisites)
- [Get Repo Info](#get-repo-info)
- [Install Chart](#install-chart)
- [Changes to the Bitnami catalog](#changes-to-the-bitnami-catalog)
- [Chart Configuration](#chart-configuration)
- [Persistent services](#persistent-services)
- [Configuring external services](#configuring-external-services)
Expand Down Expand Up @@ -194,6 +195,65 @@ global:
MONGO_AUTOMATIC_INDEX_CREATION: "false"
```

## Changes to the Bitnami catalog

Due to changes in the Bitnami catalog (Ref: [Upcoming changes to the Bitnami catalog (effective August 28th, 2025)](https://github.com/bitnami/containers/issues/83267)), the following subcharts have been updated to use `docker.io/bitnamilegacy` repository:

- MongoDB
- PostgreSQL
- Redis
- RabbitMQ
- Nats
- Consul

[Bitnami Legacy repository](https://hub.docker.com/u/bitnamilegacy) catalog will receive no further updates or support and should only be used for temporary evaluation purposes. For production usage, please consider externalizing these services as described in [Configuring external services](#configuring-external-services) section.

If you have an option to use [Bitnami Secure Images](https://www.arrow.com/globalecs/uk/products/bitnami-secure-images/?utm_source=google&utm_medium=paidsearch&utm_campaign=bitnami&gad_source=1&gad_campaignid=22996675622), you need to override image repository and tag for each of Bitnami subcharts used in Codefresh chart and [provide a valid image pull secret](https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/#registry-secret-existing-credentials).

```yaml
mongodb:
image:
repository: bitnami/mongodb
tag: <version>
pullSecrets:
- my-bitnami-registry-secret

redis:
image:
repository: bitnami/redis
tag: <version>
pullSecrets:
- my-bitnami-registry-secret

postgresql:
image:
repository: bitnami/postgresql
tag: <version>
pullSecrets:
- my-bitnami-registry-secret

rabbitmq:
image:
repository: bitnami/rabbitmq
tag: <version>
pullSecrets:
- my-bitnami-registry-secret

nats:
image:
repository: bitnami/nats
tag: <version>
pullSecrets:
- my-bitnami-registry-secret

consul:
image:
repository: bitnami/consul
tag: <version>
pullSecrets:
- my-bitnami-registry-secret
```

## Chart Configuration

See [Customizing the Chart Before Installing](https://helm.sh/docs/intro/using_helm/#customizing-the-chart-before-installing). To see all configurable options with detailed comments, visit the chart's [values.yaml](./values.yaml), or run these configuration commands:
Expand Down
64 changes: 64 additions & 0 deletions README.md.gotmpl
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Helm chart for deploying [Codefresh On-Premises](https://codefresh.io/docs/docs/
- [Prerequisites](#prerequisites)
- [Get Repo Info](#get-repo-info)
- [Install Chart](#install-chart)
- [Changes to the Bitnami catalog](#changes-to-the-bitnami-catalog)
- [Chart Configuration](#chart-configuration)
- [Persistent services](#persistent-services)
- [Configuring external services](#configuring-external-services)
Expand Down Expand Up @@ -195,6 +196,66 @@ global:
MONGO_AUTOMATIC_INDEX_CREATION: "false"
```

## Changes to the Bitnami catalog

Due to changes in the Bitnami catalog (Ref: [Upcoming changes to the Bitnami catalog (effective August 28th, 2025)](https://github.com/bitnami/containers/issues/83267)), the following subcharts have been updated to use `docker.io/bitnamilegacy` repository:

- MongoDB
- PostgreSQL
- Redis
- RabbitMQ
- Nats
- Consul

[Bitnami Legacy repository](https://hub.docker.com/u/bitnamilegacy) catalog will receive no further updates or support and should only be used for temporary evaluation purposes. For production usage, please consider externalizing these services as described in [Configuring external services](#configuring-external-services) section.

If you have an option to use [Bitnami Secure Images](https://www.arrow.com/globalecs/uk/products/bitnami-secure-images/?utm_source=google&utm_medium=paidsearch&utm_campaign=bitnami&gad_source=1&gad_campaignid=22996675622), you need to override image repository and tag for each of Bitnami subcharts used in Codefresh chart and [provide a valid image pull secret](https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/#registry-secret-existing-credentials).

```yaml
mongodb:
image:
repository: bitnami/mongodb
tag: <version>
pullSecrets:
- my-bitnami-registry-secret

redis:
image:
repository: bitnami/redis
tag: <version>
pullSecrets:
- my-bitnami-registry-secret

postgresql:
image:
repository: bitnami/postgresql
tag: <version>
pullSecrets:
- my-bitnami-registry-secret

rabbitmq:
image:
repository: bitnami/rabbitmq
tag: <version>
pullSecrets:
- my-bitnami-registry-secret

nats:
image:
repository: bitnami/nats
tag: <version>
pullSecrets:
- my-bitnami-registry-secret

consul:
image:
repository: bitnami/consul
tag: <version>
pullSecrets:
- my-bitnami-registry-secret
```


## Chart Configuration

See [Customizing the Chart Before Installing](https://helm.sh/docs/intro/using_helm/#customizing-the-chart-before-installing). To see all configurable options with detailed comments, visit the chart's [values.yaml](./values.yaml), or run these configuration commands:
Expand Down Expand Up @@ -1599,6 +1660,9 @@ If you're hosting MongoDB on [Atlas](https://www.mongodb.com/atlas/database), us
> [!IMPORTANT]
> In Atlas, for production environments, it may be recommended to use rolling index builds by enabling the "Build index via rolling process" checkbox. ([*MongoDB official documentation*](https://www.mongodb.com/docs/v7.0/tutorial/build-indexes-on-replica-sets/))




## Upgrading

### To 2-0-0
Expand Down