Skip to content

Commit 62d5ded

Browse files
haimariclaude
andcommitted
feat: Disable grafana-agent NodePool in Helm chart for cost reduction
Disabled grafana-agent NodePool creation in Helm values: - Set enabled: false to prevent NodePool creation - Updated consolidateAfter to "1s" for immediate termination - Updated budget to "100%" to allow all nodes to be terminated - Set CPU limit to "0" to prevent new provisioning Also deleted minimal-test-pool directly via kubectl. Expected result: All remaining Karpenter NodePools will scale to 0 Cost impact: Additional ~$500/month savings from grafana-agent nodes 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent de84666 commit 62d5ded

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

helm/karpenter-oci/values.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -221,17 +221,17 @@ nodePools:
221221
# -- Enable creation of default NodePools
222222
enabled: false
223223

224-
# Grafana Agent NodePool configuration
224+
# Grafana Agent NodePool configuration - DISABLED FOR COST REDUCTION
225225
grafanaAgent:
226-
# -- Enable grafana-agent NodePool
227-
enabled: true
226+
# -- Enable grafana-agent NodePool (DISABLED)
227+
enabled: false
228228
disruption:
229-
consolidateAfter: "30s"
229+
consolidateAfter: "1s"
230230
consolidationPolicy: "WhenEmpty"
231231
budgets:
232-
- nodes: "10%"
232+
- nodes: "100%"
233233
limits:
234-
cpu: "64"
234+
cpu: "0"
235235
template:
236236
metadata:
237237
labels: {}

0 commit comments

Comments
 (0)