Kubernetes - Benefit of Reducing pods

4/30/2020

What would be the main benefits of reducing the number of replicas:

  deployment:    
    replicaCount: 100       
    maxReplicaCount: 1000      
    rollingUpdate:      
      maxSurge: 150

Throughput (rpm) is not that big and I'm planning to reduce replica count.

-- Klark
cloud
cluster-computing
kubernetes
kubernetes-pod
optimization

1 Answer

4/30/2020

in my case who's in dev stage, you can save up some resource for your prioritized services or spin up new deployment for new features.

-- protrafree
Source: StackOverflow