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
| global.dynamic.includes[0] | List of dynamic plugins included inside the `janus-idp/backstage-showcase` container image, some of which are disabled by default. This file ONLY works with the `janus-idp/backstage-showcase` container image. | string | `"dynamic-plugins.default.yaml"` |
192
192
| global.dynamic.plugins | List of dynamic plugins, possibly overriding the plugins listed in `includes` files. Every item defines the plugin `package` as a [NPM package spec](https://docs.npmjs.com/cli/v10/using-npm/package-spec), an optional `pluginConfig` with plugin-specific backstage configuration, and an optional `disabled` flag to disable/enable a plugin listed in `includes` files. It also includes an `integrity` field that is used to verify the plugin package [integrity](https://w3c.github.io/webappsec-subresource-integrity/#integrity-metadata-description). | list | `[]` |
193
193
| global.host | Custom hostname shorthand, overrides `global.clusterRouterBase`, `upstream.ingress.host`, `route.host`, and url values in `upstream.backstage.appConfig`. | string | `""` |
| route.enabled | Enable the creation of the route resource | bool | `true` |
@@ -337,3 +337,18 @@ upstream:
337
337
volumePermissions:
338
338
enabled: true
339
339
```
340
+
341
+
## Installing RHDH with Orchestrator
342
+
343
+
Orchestrator brings serverless workflows into Backstage, focusing on the journey for application migration to the cloud, on boarding developers ,and user-made workflows of Backstage actions or external systems.
344
+
Orchestrator is a flavor of RHDH, and can be installed alongside the RHDH in the same namespace and in the folloing way:
345
+
346
+
1. Install the orchestrator-infra helm chart, which will install the pre-requisites required to install RHDH flavored Orchestrator.
2. Manually approve the Install Plans created by the chart, and wait for the Openshift Serverless and Openshift Serverless Logic Operators to be deployed.
351
+
3. Install backstage chart with helm, setting orchestrator to be enabled:
Copy file name to clipboardExpand all lines: charts/backstage/README.md.gotmpl
+15Lines changed: 15 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -269,3 +269,18 @@ upstream:
269
269
volumePermissions:
270
270
enabled: true
271
271
```
272
+
273
+
## Installing RHDH with Orchestrator
274
+
275
+
Orchestrator brings serverless workflows into Backstage, focusing on the journey for application migration to the cloud, on boarding developers ,and user-made workflows of Backstage actions or external systems.
276
+
Orchestrator is a flavor of RHDH, and can be installed alongside the RHDH in the same namespace and in the folloing way:
277
+
278
+
1. Install the orchestrator-infra helm chart, which will install the pre-requisites required to install RHDH flavored Orchestrator.
2. Manually approve the Install Plans created by the chart, and wait for the Openshift Serverless and Openshift Serverless Logic Operators to be deployed.
283
+
3. Install backstage chart with helm, setting orchestrator to be enabled:
rhdhPlugins: # RHDH plugins required for the Orchestrator
349
345
npmRegistry: ""# NPM registry is defined already in the container, but sometimes the registry need to be modified to use different versions of the plugin, for example: staging(https://npm.stage.registry.redhat.com) or development repositories
350
346
351
347
serverlessLogicOperator:
352
-
enabled: true# whether the operator resources are deployed
348
+
enabled: false# whether the operator resources are deployed
353
349
354
350
serverlessOperator:
355
-
enabled: true# whether the operator resources are deployed
351
+
enabled: false# whether the operator resources are deployed
356
352
357
353
postgres:
358
354
serviceName: "sonataflow-psql-postgresql"# The name of the Postgres DB service to be used by platform services. Cannot be empty.
0 commit comments