Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion charts/pmm-ha/ci/ci-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,18 @@ pmmResources:
memory: "1Gi"
cpu: "500m"

# One Client is enough to exercise the StatefulSet. The chart default of 3 does not
# fit next to 3 PMM replicas on the single-node Kind cluster.
pmmClient:
replicas: 1
resources:
requests:
memory: "128Mi"
cpu: "50m"
limits:
memory: "512Mi"
cpu: "200m"

clickhouse:
cluster:
shards: 1
Expand All @@ -24,7 +36,9 @@ clickhouse:
memory: "1Gi"
cpu: "500m"
keeper:
replicas: 1
# The chart reads replicasCount (templates/clickhouse-keeper.yaml); a plain
# "replicas" key here is silently ignored, leaving CI on the default of 3.
replicasCount: 1
resources:
requests:
memory: "512Mi"
Expand Down
Loading