Skip to content

Commit

Permalink
DBZ-8589 Use latest tag for conductor image
Browse files Browse the repository at this point in the history
Signed-off-by: Fiore Mario Vitale <mvitale@redhat.com>
  • Loading branch information
mfvitale committed Jan 20, 2025
1 parent 2122dac commit 6f88c9d
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 30 deletions.
2 changes: 1 addition & 1 deletion debezium-platform-conductor/dev/compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
conductor:
image: quay.io/debezium/platform-conductor:nightly
image: quay.io/debezium/platform-conductor:latest
pull_policy: always
depends_on:
- postgres
Expand Down
2 changes: 1 addition & 1 deletion debezium-platform-stage/compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '0.1'
services:
conductor:
container_name: conductor
image: quay.io/debezium/platform-conductor:nightly
image: quay.io/debezium/platform-conductor:latest
pull_policy: always
depends_on:
- postgres
Expand Down
54 changes: 27 additions & 27 deletions helm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,33 +18,33 @@ you `values.yaml` with your domain.

### Configurations

| Name | Description | Default |
|:-------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------|
| domain.url | domain used as ingress host | "" |
| stage.image | Image for the stage (UI) | quay.io/debezium/platform-stage:latest |
| conductor.image | Image for the conductor | quay.io/debezium/platform-conductor:nightly |
| conductor.offset.existingConfigMap | Name of the config map used to store conductor offsets. If empty it will be automatically created. | "" |
| database.enabled | Enable the installation of PostgreSQL by the chart | false |
| database.name | Database name | postgres |
| database.host | Database host | postgres |
| database.auth.existingSecret | Name of the secret to where `username` and `password` are stored. If empty a secret will be created using the `username` and `password` properties | "" |
| database.auth.username | Database username | user |
| database.auth.password | Database password | password |
| offset.reusePlatformDatabase | Pipelines will use database to store offsets. By default the database used by the conductor service is used.<br/> If you want to use a dedicated one set this property to false | true |
| offset.database.name | Database name | postgres |
| offset.database.host | Database host | postgres |
| offset.database.port | Database port | 5432 | | |
| offset.database.auth.existingSecret | Name of the secret to where `username` and `password` are stored. If not set `offset.database.auth.username` and `offset.database.auth.password` will be used. | "" |
| offset.database.auth.username | Database username | user |
| offset.database.auth.password | Database password | password | | |
| schemaHistory.reusePlatformDatabase | Pipelines will use database to store schema history. By default the database used by the conductor service is used.<br/> If you want to use a dedicated one set this property to false | true |
| schemaHistory.database.name | Database name | postgres |
| schemaHistory.database.host | Database host | postgres |
| schemaHistory.database.port | Database port | 5432 | | |
| schemaHistory.database.auth.existingSecret | Name of the secret to where `username` and `password` are stored. If not set `schemaHistory.database.auth.username` and `schemaHistory.database.auth.password` will be used. | "" |
| schemaHistory.database.auth.username | Database username | user |
| schemaHistory.database.auth.password | Database password | password | | | |
| env | List of env variable to pass to the conductor | [] |
| Name | Description | Default |
|:-------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------|
| domain.url | domain used as ingress host | "" |
| stage.image | Image for the stage (UI) | quay.io/debezium/platform-stage:latest |
| conductor.image | Image for the conductor | quay.io/debezium/platform-conductor:latest |
| conductor.offset.existingConfigMap | Name of the config map used to store conductor offsets. If empty it will be automatically created. | "" |
| database.enabled | Enable the installation of PostgreSQL by the chart | false |
| database.name | Database name | postgres |
| database.host | Database host | postgres |
| database.auth.existingSecret | Name of the secret to where `username` and `password` are stored. If empty a secret will be created using the `username` and `password` properties | "" |
| database.auth.username | Database username | user |
| database.auth.password | Database password | password |
| offset.reusePlatformDatabase | Pipelines will use database to store offsets. By default the database used by the conductor service is used.<br/> If you want to use a dedicated one set this property to false | true |
| offset.database.name | Database name | postgres |
| offset.database.host | Database host | postgres |
| offset.database.port | Database port | 5432 | | |
| offset.database.auth.existingSecret | Name of the secret to where `username` and `password` are stored. If not set `offset.database.auth.username` and `offset.database.auth.password` will be used. | "" |
| offset.database.auth.username | Database username | user |
| offset.database.auth.password | Database password | password | | |
| schemaHistory.reusePlatformDatabase | Pipelines will use database to store schema history. By default the database used by the conductor service is used.<br/> If you want to use a dedicated one set this property to false | true |
| schemaHistory.database.name | Database name | postgres |
| schemaHistory.database.host | Database host | postgres |
| schemaHistory.database.port | Database port | 5432 | | |
| schemaHistory.database.auth.existingSecret | Name of the secret to where `username` and `password` are stored. If not set `schemaHistory.database.auth.username` and `schemaHistory.database.auth.password` will be used. | "" |
| schemaHistory.database.auth.username | Database username | user |
| schemaHistory.database.auth.password | Database password | password | | | |
| env | List of env variable to pass to the conductor | [] |

# Install

Expand Down
2 changes: 1 addition & 1 deletion helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ domain:
stage:
image: quay.io/debezium/platform-stage:latest
conductor:
image: quay.io/debezium/platform-conductor:nightly
image: quay.io/debezium/platform-conductor:latest
offset:
existingConfigMap: ""
offset:
Expand Down

0 comments on commit 6f88c9d

Please sign in to comment.