Scaling DevOps Plan Server, Analytics, and Search instances

You can configure scaling for DevOps Plan Server, Analytics, and Search instances manually or automatically by configuring Horizontal Pod Autoscaling.

Scaling can be configured manually or automatically by using Horizontal Pod Autoscaling.

Manual scaling

DevOps Plan Server, Analyrics, and Search instances can be scaled manually by updating the replicaCount values in your configuration.
## DevOps Plan Server
ccm:
  replicaCount:

## Analytics
analytics:
  replicaCount: 
  
## Search
search:
  replicaCount:

Horizontal Pod Autoscaler (HPA)

DevOps Plan supports Horizontal Pod Autoscaler (HPA) for Server, Analytics, and Search pods to automatically configure scaling.

By default, HPA is disabled for all components. To enable it, set the autoscaling.enabled flag.
  ## DevOps Plan Server
  ccm:
    autoscaling:
      enabled: true

  ## Analytics
  analytics:
    autoscaling:
      enabled: true 

  ## Search
  search:
    autoscaling:
      enabled: true

For more information on setting parameters to configure HPA for DevOps Plan, see Horizontal Pod Autoscaling configuration parameters.