Skip to content

Commit e78d2fd

Browse files
docs: added ability to disable postgres store for eventbus and set schema name for audit (#121)
1 parent 0953fa0 commit e78d2fd

File tree

3 files changed

+22
-1
lines changed

3 files changed

+22
-1
lines changed

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -415,6 +415,13 @@ global:
415415
# -- Set postgres port number
416416
postgresPort: 5432
417417

418+
# -- Set postgres schema name for audit database in plain text.
419+
auditPostgresSchemaName: "public"
420+
421+
# -- Disables saving events from eventbus into postgres.
422+
# 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.
423+
disablePostgresForEventbus: "true"
424+
418425
postgresql:
419426
# -- Disable postgresql subchart installation
420427
enabled: false

README.md.gotmpl

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,6 +417,13 @@ global:
417417
# -- Set postgres port number
418418
postgresPort: 5432
419419

420+
# -- Set postgres schema name for audit database in plain text.
421+
auditPostgresSchemaName: "public"
422+
423+
# -- Disables saving events from eventbus into postgres.
424+
# 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.
425+
disablePostgresForEventbus: "true"
426+
420427
postgresql:
421428
# -- Disable postgresql subchart installation
422429
enabled: false
@@ -2390,7 +2397,7 @@ For built-in RabbitMQ `bitnami/rabbitmq` subchart, pre-upgrade hook was added to
23902397

23912398
> [!WARNING]
23922399
> **BREAKING CHANGES**
2393-
>
2400+
>
23942401
> 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)).
23952402
>
23962403
> 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.

charts/codefresh/values.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,13 @@ global:
139139
# -- Application protocol.
140140
appProtocol: https
141141

142+
# -- Set postgres schema name for audit database in plain text.
143+
auditPostgresSchemaName: "public"
144+
145+
# -- Disables saving events from eventbus into postgres.
146+
# 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.
147+
disablePostgresForEventbus: "true"
148+
142149
# -- Firebase URL for logs streaming in plain text
143150
firebaseUrl: "https://codefresh-on-prem.firebaseio.com/on-prem"
144151
# -- Firebase URL for logs streaming from existing secret

0 commit comments

Comments
 (0)