From 0681c040a6f935134bff96aa37dbd8dc79bd2f0d Mon Sep 17 00:00:00 2001 From: Ricardo Zanini <1538000+ricardozanini@users.noreply.github.com> Date: Thu, 18 Jul 2024 03:59:50 -0300 Subject: [PATCH] NO ISSUE - Fix a wrong attribute under platform spec.properties (#663) We are missing the `flow` attribute under `spec.properties`: ```shell The SonataFlowPlatform "sonataflow-platform" is invalid: spec.properties: Invalid value: "array": spec.properties in body must be of type object: "array" ``` --- .../ROOT/pages/cloud/operator/using-persistence.adoc | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/serverlessworkflow/modules/ROOT/pages/cloud/operator/using-persistence.adoc b/serverlessworkflow/modules/ROOT/pages/cloud/operator/using-persistence.adoc index 54a6e1778..feea5d6e0 100644 --- a/serverlessworkflow/modules/ROOT/pages/cloud/operator/using-persistence.adoc +++ b/serverlessworkflow/modules/ROOT/pages/cloud/operator/using-persistence.adoc @@ -256,7 +256,7 @@ spec: === Flyway configuration by using SonataFlowPlatForm properties -To apply a common Flyway configuration to all the workflows in a given namespace, you can use the `spec.properties` of the `SonataFlowPlatform` in that namespace. +To apply a common Flyway configuration to all the workflows in a given namespace, you can use the `spec.properties.flow` of the `SonataFlowPlatform` in that namespace. .Example of enabling Flyway by using the SonataFlowPlatform properties. [source,yaml] @@ -267,13 +267,14 @@ metadata: name: sonataflow-platform spec: properties: - - name: quarkus.flyway.migrate-at-start - value: true + flow: + - name: quarkus.flyway.migrate-at-start + value: true ---- [NOTE] ==== -The configuration above takes effect at workflow deployment time, so you must be sure that property is configured before you deploy your workflows. +The configuration above takes effect at workflow deployment time, so you must be sure that the property is configured before you deploy your workflows. ==== === Manual database initialization by using DDL @@ -298,4 +299,4 @@ And, by using the `SonataFlow` CR you can enable the persistence of a particular * xref:cloud/operator/developing-workflows.adoc[] * xref:persistence/core-concepts.adoc[] -include::../../../pages/_common-content/report-issue.adoc[] \ No newline at end of file +include::../../../pages/_common-content/report-issue.adoc[]