0 votes
14 views
ago by (30.6k points)
After the operator finished the installation we have dozens of routes in the namespace. Which URL is the Workflow Center console, which one is the Workflow Server for REST calls, and where is Workplace / Process Admin?

1 Answer

0 votes
ago by (30.6k points)

The operator writes every endpoint into the status of the custom resource; that is the authoritative list:

oc get icp4acluster icp4adeploy -n cp4ba -o jsonpath='{.status.endpoints}' | jq -r '.[] | "\(.name): \(.uri)"'
# typical output (names vary slightly per release)
Cloud Pak dashboard: https://cpd-cp4ba.apps.cluster.example.com/
Business Automation Studio: https://cpd-cp4ba.apps.cluster.example.com/bas/BAStudio      (authoring: process designer inside)
Workflow Center console: https://cpd-cp4ba.apps.cluster.example.com/baw-center/ProcessCenter   (repository, servers, snapshots)
Workflow Server (bawins1) - Process Admin: https://cpd-cp4ba.apps.cluster.example.com/baw/bawins1/ProcessAdmin
Workflow Server (bawins1) - REST base: https://cpd-cp4ba.apps.cluster.example.com/baw/bawins1/rest/bpm/wle/v1
Workflow Server (bawins1) - Process REST v2 / Operations REST: .../baw/bawins1/bpm , .../baw/bawins1/ops , Swagger: .../bpm/docs , .../ops/docs
Workplace: https://cpd-cp4ba.apps.cluster.example.com/workplace
Case Manager / Navigator: https://cpd-cp4ba.apps.cluster.example.com/icn/navigator

Rules of thumb: since 21.0.3 everything goes through the Zen front door (cpd-<namespace>.apps.<cluster>) with a path per capability and per Workflow Server instance name (the name in baw_configuration); older releases used one route per component (icp4adeploy-bawins1-baw-server-..., still present as internal routes). The Swagger pages /bpm/docs and /ops/docs on the server route are the quickest way to confirm you hit the right instance. Inside the cluster, pods call each other through services (https://icp4adeploy-bawins1-baw-server.cp4ba.svc:9443) - use those for service-to-service integration to avoid the router.

References

Related questions

723 questions

807 answers

98 comments

4.8k users

Join BPM Community Discord Channel

Welcome to BPM Tips Q&A, Community wiki/forum where you can ask questions and receive answers from other IBM BPM experts and members of the community. Users with 2000 points will automatically be promoted to expert level.
Created by Dosvak LLC
Our Youtube Channel
...