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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -415,6 +415,13 @@ global:
# -- Set postgres port number
postgresPort: 5432

# -- Set postgres schema name for audit database in plain text.
auditPostgresSchemaName: "public"

# -- Disables saving events from eventbus into postgres.
# When it is set to “false” all events (workflows, jobs, user etc.) from eventbus are starting saving to postgres and following services (charts-manager, cluster-providers, context-manager, cfapi, cf-platform-analytics, gitops-dashboard-manager, pipeline-manager, kube-integration, tasker-kubernetes, runtime-environment-manager) start requiring postgres connection.
disablePostgresForEventbus: "true"

postgresql:
# -- Disable postgresql subchart installation
enabled: false
Expand Down
9 changes: 8 additions & 1 deletion README.md.gotmpl
Original file line number Diff line number Diff line change
Expand Up @@ -417,6 +417,13 @@ global:
# -- Set postgres port number
postgresPort: 5432

# -- Set postgres schema name for audit database in plain text.
auditPostgresSchemaName: "public"

# -- Disables saving events from eventbus into postgres.
# When it is set to “false” all events (workflows, jobs, user etc.) from eventbus are starting saving to postgres and following services (charts-manager, cluster-providers, context-manager, cfapi, cf-platform-analytics, gitops-dashboard-manager, pipeline-manager, kube-integration, tasker-kubernetes, runtime-environment-manager) start requiring postgres connection.
disablePostgresForEventbus: "true"

postgresql:
# -- Disable postgresql subchart installation
enabled: false
Expand Down Expand Up @@ -2390,7 +2397,7 @@ For built-in RabbitMQ `bitnami/rabbitmq` subchart, pre-upgrade hook was added to

> [!WARNING]
> **BREAKING CHANGES**
>
>
> Default DinD image has been upgraded to 28.x, which removes support for pushing and pulling with legacy image manifest v2 schema 1 ([ref](https://docs.docker.com/engine/deprecated/#pushing-and-pulling-with-image-manifest-v2-schema-1)).
>
> Before upgrading Codefresh, please follow the instruction in [this doc](https://codefresh.io/docs/docs/kb/articles/upgrade-deprecated-docker-images/) to identify deprecated images, upgrade them, and then proceed with upgrading the platform.
Expand Down
7 changes: 7 additions & 0 deletions charts/codefresh/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,13 @@ global:
# -- Application protocol.
appProtocol: https

# -- Set postgres schema name for audit database in plain text.
auditPostgresSchemaName: "public"

# -- Disables saving events from eventbus into postgres.
# When it is set to “false” all events (workflows, jobs, user etc.) from eventbus are starting saving to postgres and following services (charts-manager, cluster-providers, context-manager, cfapi, cf-platform-analytics, gitops-dashboard-manager, pipeline-manager, kube-integration, tasker-kubernetes, runtime-environment-manager) start requiring postgres connection.
disablePostgresForEventbus: "true"

# -- Firebase URL for logs streaming in plain text
firebaseUrl: "https://codefresh-on-prem.firebaseio.com/on-prem"
# -- Firebase URL for logs streaming from existing secret
Expand Down