Skip to content

Commit 5d15bc5

Browse files
batzionb04kash
authored andcommitted
docs(orchestrator): fix README links
1 parent 9b75f4e commit 5d15bc5

File tree

2 files changed

+15
-19
lines changed

2 files changed

+15
-19
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
---

workspaces/orchestrator/plugins/orchestrator/README.md

+13-19
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ The Orchestrator plugin is composed of the following packages:
5555

5656
- Docker up and running
5757

58-
#### Setting up the Orchestrator as a dynamic plugin in a Red Hat Developer Hub Deployment
58+
#### Setting up the Orchestrator as a dynamic plugin in a Helm deployment
5959

60-
- Follow https://github.com/janus-idp/backstage-showcase/blob/main/docs/dynamic-plugins/installing-plugins.md#installing-external-dynamic-plugins
60+
Please follow this link for instructions: https://github.com/janus-idp/backstage-showcase/blob/main/docs/dynamic-plugins/installing-plugins.md#installing-external-dynamic-plugins.
6161

6262
#### Setting up the configuration for the Orchestrator plugin
6363

@@ -158,40 +158,34 @@ For more information about the configuration options, including other optional p
158158

159159
### Extensible Workflow Execution Form
160160

161-
The `orchestrator` plugin includes an extensible form for executing forms. For detailed guidance see the [Extensible Workflow Execution Form Documentation](./docs/extensibleForm.md).
161+
The `orchestrator` plugin includes an extensible form for executing forms. For detailed guidance see the [Extensible Workflow Execution Form Documentation](https://github.com/redhat-developer/rhdh-plugins/blob/main/workspaces/orchestrator/plugins/orchestrator/docs/extensibleForm.md).
162162

163163
## For users
164164

165165
### Using the Orchestrator plugin in Backstage
166166

167167
The Orchestrator plugin enhances the Backstage with the execution of developer self-service flows. It provides a graphical editor to visualize workflow definitions, and a dashboard to monitor the execution of the workflows.
168168

169-
Refer to the [Quick start](https://github.com/janus-idp/backstage-plugins/blob/main/plugins/orchestrator/docs/quickstart.md) to install the Orchestrator using the helm chart and execute a sample workflow through the Red Hat Developer Hub orchestrator plugin UI.
169+
Refer to the [Quick start](https://github.com/redhat-developer/rhdh-plugins/blob/main/workspaces/orchestrator/plugins/orchestrator/docs/quickstart.md) to install the Orchestrator using the helm chart and execute a sample workflow through the Red Hat Developer Hub orchestrator plugin UI.
170170

171171
## OpenAPI
172172

173173
The plugin provides OpenAPI `v2` endpoints definition to facilitate communication between the frontend and backend. This approach minimizes the data that needs to be sent to the frontend, provides flexibility and avoids dependencies on changes in the [CNCF serverless specification](https://github.com/serverlessworkflow/specification/blob/main/specification.md). It also allows for a seamless transition if there's a need to replace the backend implementation.
174174

175175
In addition, by leveraging on OpenAPI spec, it is possible to generate clients and create CI steps.
176176

177-
OpenAPI specification [file](https://github.com/janus-idp/backstage-plugins/blob/main/plugins/orchestrator-common/src/openapi/openapi.yaml) is available in [orchestrator-common](https://github.com/janus-idp/backstage-plugins/blob/main/plugins/orchestrator-common).
178-
OpenAPI specification documentation is available [here](https://github.com/janus-idp/backstage-plugins/blob/main/plugins/orchestrator-common/src/generated/docs/markdown/README.md)
179-
180-
> **NOTE:**\
181-
> While the OpenAPI specification is available in the Orchestrator plugin, the UI currently does not rely on this spec. \
182-
> We plan to incorporate v2 endpoints into the UI in the near future.
177+
OpenAPI specification [file](https://github.com/redhat-developer/rhdh-plugins/blob/main/workspaces/orchestrator/plugins/orchestrator-common/src/openapi/openapi.yaml) is available in [orchestrator-common](https://github.com/redhat-developer/rhdh-plugins/blob/main/workspaces/orchestrator/plugins/orchestrator-common).
178+
OpenAPI specification documentation is available [here](https://github.com/redhat-developer/rhdh-plugins/blob/main/workspaces/orchestrator/plugins/orchestrator-common/src/generated/docs/markdown/README.md)
183179

184180
### orchestrator-common
185181

186-
The typescript schema is generated in [auto-generated](https://github.com/janus-idp/backstage-plugins/blob/main/plugins/orchestrator-common/src/auto-generated/api/models/schema.ts) folder from openapi.yaml specification file.
182+
The typescript client is generated in [generated](https://github.com/redhat-developer/rhdh-plugins/blob/main/workspaces/orchestrator/plugins/orchestrator-common/src/generated/client) folder from openapi.yaml specification file.
187183

188184
### orchestrator-backend
189185

190186
The orchestrator backend can use the generated schema to validate the HTTP requests and responses.
191187

192-
> NOTE: Temporary the validation has been disabled. It will be enabled when the orchestrator frontend will switch to the use of v2 endpoints only.
193-
194-
#### audit log
188+
### audit log
195189

196190
The orchestrator backend has audit logs for all incoming requests.
197191

@@ -202,17 +196,17 @@ For more information about audit logs in RHDH, please refer to [the official doc
202196

203197
Checkout the backstage-plugin
204198

205-
`git clone [email protected]:janus-idp/backstage-plugins.git`
199+
`git clone [email protected]:red-hat-developer-hub/backstage-plugins.git`
206200

207-
If you need to change the OpenAPI spec, edit the [openapi.yaml](https://github.com/janus-idp/backstage-plugins/blob/main/plugins/orchestrator-common/src/openapi/openapi.yaml) according to your needs and then execute from the project root folder:
201+
If you need to change the OpenAPI spec, edit the [openapi.yaml](https://github.com/redhat-developer/rhdh-plugins/blob/main/workspaces/orchestrator/plugins/orchestrator-common/src/openapi/openapi.yaml) according to your needs and then execute from the project root folder:
208202

209203
`yarn --cwd plugins/orchestrator-common openapi`
210204

211-
This command updates the [auto-generated files](https://github.com/janus-idp/backstage-plugins/blob/main/plugins/orchestrator-common/src/auto-generated/api/) and the [auto-generated docs](https://github.com/redhat-developer/rhdh-plugins/tree/main/workspaces/orchestrator/plugins/orchestrator-common/src/auto-generated/docs).
205+
This command updates the [generated files](https://github.com/redhat-developer/rhdh-plugins/blob/main/workspaces/orchestrator/plugins/orchestrator-common/src/generated) including API, client and docs.
212206

213207
> NOTE: Do not manually edit auto-generated files
214208

215-
If you add a new component in the spec, then you need to export the generated typescript object [here](https://github.com/janus-idp/backstage-plugins/blob/main/plugins/orchestrator-common/src/openapi/types.ts). For example, if you define
209+
If you add a new component in the spec, then you need to export the generated typescript object [here](https://github.com/redhat-developer/rhdh-plugins/blob/main/workspaces/orchestrator/plugins/orchestrator-common/src/generated/client/api.ts). For example, if you define
216210

217211
```yaml
218212
components:
@@ -254,7 +248,7 @@ paths:
254248
$ref: '#/components/schemas/Person'
255249
```
256250

257-
Then you can implement the endpoint in [router.ts](https://github.com/janus-idp/backstage-plugins/blob/main/plugins/orchestrator-backend/src/service/router.ts) referring the operationId `getNames`:
251+
Then you can implement the endpoint in [router.ts](https://github.com/redhat-developer/rhdh-plugins/blob/main/workspaces/orchestrator/plugins/orchestrator-backend/src/service/router.ts) referring the operationId `getNames`:
258252

259253
```typescript
260254
api.register('getNames', async (_c, _req, res: express.Response, next) => {

0 commit comments

Comments
 (0)