Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[9.100.x-prod] SRVLOGIC-295: Update operator managed persistence extensions to the RHB of Quarkus 3.8.4 and to the OSL version #41

Merged
merged 2 commits into from
May 22, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ data:
# Quarkus extensions required for workflows persistence. These extensions are used by the SonataFlow build system,
# in cases where the workflow being built has configured postgresql persistence.
postgreSQLPersistenceExtensions:
- groupId: io.quarkus
- groupId: com.redhat.quarkus.platform
artifactId: quarkus-jdbc-postgresql
version: 3.2.10.Final
- groupId: io.quarkus
version: 3.8.4.redhat-00002
- groupId: com.redhat.quarkus.platform
artifactId: quarkus-agroal
version: 3.2.10.Final
version: 3.8.4.redhat-00002
- groupId: org.kie
artifactId: kie-addons-quarkus-persistence-jdbc
version: 999-SNAPSHOT
version: 9.100.0.redhat-00002
kind: ConfigMap
metadata:
name: sonataflow-operator-controllers-config
10 changes: 5 additions & 5 deletions config/manager/controllers_cfg.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ builderConfigMapName: "sonataflow-operator-builder-config"
# Quarkus extensions required for workflows persistence. These extensions are used by the SonataFlow build system,
# in cases where the workflow being built has configured postgresql persistence.
postgreSQLPersistenceExtensions:
- groupId: io.quarkus
- groupId: com.redhat.quarkus.platform
artifactId: quarkus-jdbc-postgresql
version: 3.2.10.Final
- groupId: io.quarkus
version: 3.8.4.redhat-00002
- groupId: com.redhat.quarkus.platform
artifactId: quarkus-agroal
version: 3.2.10.Final
version: 3.8.4.redhat-00002
- groupId: org.kie
artifactId: kie-addons-quarkus-persistence-jdbc
version: 999-SNAPSHOT
version: 9.100.0.redhat-00002
4 changes: 2 additions & 2 deletions controllers/cfg/controllers_cfg_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ func TestInitializeControllersCfgAt_ValidFile(t *testing.T) {
assert.Equal(t, GAV{
GroupId: "io.quarkus",
ArtifactId: "quarkus-jdbc-postgresql",
Version: "3.2.10.Final",
Version: "3.8.4",
}, postgresExtensions[0])

assert.Equal(t, GAV{
GroupId: "io.quarkus",
ArtifactId: "quarkus-agroal",
Version: "3.2.10.Final",
Version: "3.8.4",
}, postgresExtensions[1])

assert.Equal(t, GAV{
Expand Down
4 changes: 2 additions & 2 deletions controllers/cfg/testdata/controllers-cfg-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ sonataFlowDevModeImageTag: "local/sonataflow-devmode:1.0.0"
postgreSQLPersistenceExtensions:
- groupId: io.quarkus
artifactId: quarkus-jdbc-postgresql
version: 3.2.10.Final
version: 3.8.4
- groupId: io.quarkus
artifactId: quarkus-agroal
version: 3.2.10.Final
version: 3.8.4
- groupId: org.kie
artifactId: kie-addons-quarkus-persistence-jdbc
version: 999-SNAPSHOT
10 changes: 5 additions & 5 deletions operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27028,15 +27028,15 @@ data:
# Quarkus extensions required for workflows persistence. These extensions are used by the SonataFlow build system,
# in cases where the workflow being built has configured postgresql persistence.
postgreSQLPersistenceExtensions:
- groupId: io.quarkus
- groupId: com.redhat.quarkus.platform
artifactId: quarkus-jdbc-postgresql
version: 3.2.10.Final
- groupId: io.quarkus
version: 3.8.4.redhat-00002
- groupId: com.redhat.quarkus.platform
artifactId: quarkus-agroal
version: 3.2.10.Final
version: 3.8.4.redhat-00002
- groupId: org.kie
artifactId: kie-addons-quarkus-persistence-jdbc
version: 999-SNAPSHOT
version: 9.100.0.redhat-00002
kind: ConfigMap
metadata:
name: sonataflow-operator-controllers-config
Expand Down
Loading