Skip to content

Commit

Permalink
set 2 replicas and disable autoscaling by default
Browse files Browse the repository at this point in the history
Signed-off-by: Robbie Lankford <[email protected]>
  • Loading branch information
rlankfo committed Jan 31, 2024
1 parent 7ad633b commit edd4539
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions charts/sampling/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,12 @@ sampling:
grafana-agent-deployment:
controller:
type: deployment
replicas: 2
autoscaling:
# -- Creates a HorizontalPodAutoscaler for controller type deployment.
enabled: true
enabled: false
# -- The lower limit for the number of replicas to which the autoscaler can scale down.
minReplicas: 1
minReplicas: 2
# -- The upper limit for the number of replicas to which the autoscaler can scale up.
maxReplicas: 5
# -- Average CPU utilization across all relevant pods, a percentage of the requested value of the resource for the pods. Setting `targetCPUUtilizationPercentage` to 0 will disable CPU scaling.
Expand Down Expand Up @@ -72,11 +73,12 @@ grafana-agent-deployment:
grafana-agent-statefulset:
controller:
type: statefulset
replicas: 2
autoscaling:
# -- Creates a HorizontalPodAutoscaler for controller type deployment.
enabled: true
enabled: false
# -- The lower limit for the number of replicas to which the autoscaler can scale down.
minReplicas: 1
minReplicas: 2
# -- The upper limit for the number of replicas to which the autoscaler can scale up.
maxReplicas: 5
# -- Average CPU utilization across all relevant pods, a percentage of the requested value of the resource for the pods. Setting `targetCPUUtilizationPercentage` to 0 will disable CPU scaling.
Expand Down

0 comments on commit edd4539

Please sign in to comment.