From 663789a25708db47745ad53582b1a109f0931d4b Mon Sep 17 00:00:00 2001 From: Blair MacNeil Date: Wed, 4 Jun 2025 17:51:42 -0400 Subject: [PATCH 1/2] fix: remove cpu limit from resources in values.yaml and update schema accordingly --- helm/values.schema.json | 6 ------ helm/values.yaml | 1 - 2 files changed, 7 deletions(-) diff --git a/helm/values.schema.json b/helm/values.schema.json index e656c74..913482e 100644 --- a/helm/values.schema.json +++ b/helm/values.schema.json @@ -144,12 +144,6 @@ { "type": "number" }, { "type": "string" } ] - }, - "cpu": { - "oneOf": [ - { "type": "number" }, - { "type": "string" } - ] } }, "required": [ diff --git a/helm/values.yaml b/helm/values.yaml index bc7420c..89017bd 100644 --- a/helm/values.yaml +++ b/helm/values.yaml @@ -81,7 +81,6 @@ resources: cpu: "50m" limits: memory: "128Mi" - cpu: "100m" aws: # If specified, use the AWS region for AWS API calls From ad89bcabf6cfeaa84348b0c092413cef7d1655b1 Mon Sep 17 00:00:00 2001 From: Blair MacNeil Date: Thu, 5 Jun 2025 14:58:52 -0400 Subject: [PATCH 2/2] fix: remove cpu limit from resources in values.yaml and update schema accordingly --- helm/values.schema.json | 3 +-- helm/values.yaml | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/helm/values.schema.json b/helm/values.schema.json index 913482e..bc02e65 100644 --- a/helm/values.schema.json +++ b/helm/values.schema.json @@ -147,8 +147,7 @@ } }, "required": [ - "memory", - "cpu" + "memory" ], "type": "object" } diff --git a/helm/values.yaml b/helm/values.yaml index 89017bd..64ddf9b 100644 --- a/helm/values.yaml +++ b/helm/values.yaml @@ -81,6 +81,7 @@ resources: cpu: "50m" limits: memory: "128Mi" + # cpu: "100m" # Optional: Uncomment to set a CPU limit (may cause throttling) aws: # If specified, use the AWS region for AWS API calls