Changing the deployment profile on Cloud Pak for Integration
You can change an API Connect installation to use a different deployment profile.
Before you begin
This task assumes that you have already deployed an API Connect cluster as explained in Deploying on OpenShift and Cloud Pak for Integration. If you are switching from a development profile to a production profile, ensure that you have production profile hardware (3 nodes) available.
About this task
Important considerations:
- While it is possible to use a development profile installation in a production deployment, it is not recommended.
- Based on the resources configured for each microservice in the profile, there might be downtime during the profile change.
- Supported profiles:
- Development: n3xc4.m16
- Production: n12xc4.m12
- If you enabled the analytics message queue feature, you must disable it before
changing to another deployment profile. You can re-enable the message queue feature after the
profile change is complete.
To disable the message queue:
- In the Cloud Pak Automation UI, click the overflow menu next to the API Connect capability and select Edit.
- Click the YAML tab to edit the top-level
APIConnectCluster
CR. - In the
spec.analytics
section, locate themq
subsection and change theenabled
setting tofalse
.spec: analytics: mq: enabled: false
- Click Update to save and apply the change.
To re-enable the message queue:
- In the Cloud Pak Automation UI, click the overflow menu next to the API Connect capability and select Edit.
- Click the YAML tab to edit the top-level
APIConnectCluster
CR. - In the
spec.analytics
section, locate themq
subsection and change theenabled
setting totrue
. - Click Update to save and apply the change.