You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/orchestrator/con-generated-workflow-manifests.adoc
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ Values are not required at this stage as you can set them later after applying C
22
22
23
23
[Important]
24
24
====
25
-
In OpenShift Serverless Logic `v1.35`, after updating a secret, you must manually restart the workflow Pod for changes to apply.
25
+
In OpenShift Serverless Logic `v1.36`, after updating a secret, you must manually restart the workflow Pod for changes to apply.
26
26
====
27
27
28
28
`01-configmap_basic-props.yaml`::
@@ -54,21 +54,21 @@ podTemplate:
54
54
----
55
55
56
56
.The persistence configuration example:
57
-
[source,yaml]
57
+
[source,yaml,subs="+quotes"]
58
58
----
59
59
persistence:
60
60
postgresql:
61
61
secretRef:
62
-
name: sonataflow-psql-postgresql
63
-
userKey: postgres-username
64
-
passwordKey: postgres-password
62
+
name: `sonataflow-psql-postgresql` # Update to match the name of the Secret of your deployment.
63
+
userKey: `__<your_postgres_username>__` # Replace with the key for your deployment.
64
+
passwordKey: `__<your_postgres_password>__` # Replace with the password of your deployment.
65
65
serviceRef:
66
-
name: sonataflow-psql-postgresql
66
+
name: `sonataflow-psql-postgresql` # Update to match the name of the Secret of your deployment.
67
67
port: 5432
68
68
databaseName: sonataflow
69
69
databaseSchema: basic
70
70
----
71
71
72
-
If you must connect to an external database, replace `serviceRef` with a `jdbcUrl`. See the link:https://sonataflow.org/serverlessworkflow/latest/cloud/operator/enabling-jobs-service.html#_using_the_persistence_field_defined_in_the_sonataflowplatform_cr[SonataFlow Guides] for more information.
72
+
If you must connect to an external database, replace `serviceRef` with a `jdbcUrl`. See link:https://docs.redhat.com/en/documentation/red_hat_openshift_serverless/1.36/html-single/serverless_logic/index#serverless-logic-managing-persistence[Managing workflow persistence].
73
73
74
-
By default, the script generates all the manifests without a namespace. You can specify a namespace to the script by using the `--namespace` flag if you know the target namespace in advance. Otherwise, you must provide the namespace when applying the manifests to the cluster. See link:https://sonataflow.org/serverlessworkflow/latest/cloud/operator/configuring-workflows.html[Configuring workflow services].
74
+
By default, the script generates all the manifests without a namespace. You can specify a namespace to the script by using the `--namespace` flag if you know the target namespace in advance. Otherwise, you must provide the namespace when applying the manifests to the cluster. See link:https://docs.redhat.com/en/documentation/red_hat_openshift_serverless/1.36/html-single/serverless_logic/index#serverless-logic-configuring-workflow-services[Configuring workflow services].
Copy file name to clipboardExpand all lines: modules/orchestrator/proc-deploying-workflows-on-a-cluster.adoc
+12-12Lines changed: 12 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,29 +9,29 @@ You can now deploy the workflow on a cluster, since the image has been pushed to
9
9
10
10
* You have an {ocp-short} cluster with the following versions of components installed:
11
11
12
-
* {product} ({product-very-short}) `v1.5`
13
-
* Orchestrator plugins `v1.4` or `v1.5`
14
-
* OpenShift Serverless `v1.35`
15
-
* OpenShift Serverless Logic `v1.35`
12
+
* {product} ({product-very-short}) `v1.7`
13
+
* Orchestrator plugins `v1.7.1`
14
+
* OpenShift Serverless `v1.36`
15
+
* OpenShift Serverless Logic `v1.36`
16
16
17
17
For further instructions on installing these components, see the {orchestrator-book-link}#con-orchestrator-plugin-components[Orchestrator plugin components on {ocp-short}].
18
18
19
-
* You must apply the workflow manifests in a namespace that contains a `SonataflowPlatform` custom resource (CR), which manages the link:https://sonataflow.org/serverlessworkflow/latest/cloud/operator/supporting-services.html[supporting services]. By default, OpenShift Serverless Logic services are installed in the `sonataflow-infra` namespace.
19
+
* You must apply the workflow manifests in a namespace that contains a `SonataflowPlatform` custom resource (CR), which manages the link:https://docs.redhat.com/en/documentation/red_hat_openshift_serverless/1.36/html-single/serverless_logic/index#serverless-logic-configuring-workflow-services[supporting services]. By default, OpenShift Serverless Logic services are installed in the `sonataflow-infra` namespace.
20
20
21
21
.Procedure
22
22
23
23
. Use the `kubectl create` command specifying the target namespace to apply the Kubernetes manifests as shown in the following example:
0 commit comments