Horizontal scalability
When using a HELM chart to deploy ERP Connectivity, you can scale the number of instances horizontally by increasing the number of replicas in the deployment. This can be done by setting the replicaCount value in the custom-values.yaml file of the umbrella chart.
The replicaCount value is set to 2 by default. This means that by default, two instances of ERP Connectivity will be deployed.
|
For example, to scale the number of ERP Connectivity instances to 3, set the replicaCount value to 3 in the custom-values.yaml file:
erpconn:
deployments:
erp-connectivity:
replicaCount: 3
After updating the custom-values.yaml file you need to deploy the HELM chart with the updated values. This will then create 3 instances of ERP Connectivity.
Automatic horizontal scalability is not supported for ERP Connectivity in HELM deployments. You need to manually scale the number of instances by updating the replicaCount value in the custom-values.yaml file.
|