From 60526d8942cc33c4cb06832422e2f0e670781ba5 Mon Sep 17 00:00:00 2001 From: Daniel Panzella Date: Sun, 2 Feb 2025 22:34:51 -0800 Subject: [PATCH] fix: reduce resource requests --- .github/workflows/test-operator-wandb.yaml | 2 +- test-configs/operator-wandb/default.yaml | 24 +++++++++++++ .../operator-wandb/separate-pods.yaml | 34 +++++++++++++++++++ 3 files changed, 59 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-operator-wandb.yaml b/.github/workflows/test-operator-wandb.yaml index 1b2a3dcf..0b93bbbd 100644 --- a/.github/workflows/test-operator-wandb.yaml +++ b/.github/workflows/test-operator-wandb.yaml @@ -11,7 +11,7 @@ jobs: matrix: k8s-version: ["v1.32.1", "v1.31.4", "v1.30.8"] configuration: ["default", "separate-pods"] - runs-on: ubuntu-latest-8-cores + runs-on: ubuntu-latest environment: Helm Charts steps: - name: Checkout diff --git a/test-configs/operator-wandb/default.yaml b/test-configs/operator-wandb/default.yaml index cac3dd7c..74fa4a57 100644 --- a/test-configs/operator-wandb/default.yaml +++ b/test-configs/operator-wandb/default.yaml @@ -10,6 +10,24 @@ app: extraEnv: GLOBAL_ADMIN_API_KEY: "test-api-key" GORILLA_INSECURE_ALLOW_API_KEY_ADMIN_ACCESS: "true" + resources: + requests: {} + limits: {} + +parquet: + resources: + requests: {} + limits: {} + +weave: + resources: + requests: {} + limits: {} + +console: + resources: + requests: {} + limits: {} ingress: install: false @@ -17,5 +35,11 @@ ingress: mysql: install: true + resources: + requests: {} + limits: {} redis: install: true + resources: + requests: {} + limits: {} diff --git a/test-configs/operator-wandb/separate-pods.yaml b/test-configs/operator-wandb/separate-pods.yaml index 2915a633..bd744a1f 100644 --- a/test-configs/operator-wandb/separate-pods.yaml +++ b/test-configs/operator-wandb/separate-pods.yaml @@ -15,6 +15,34 @@ app: extraEnv: GLOBAL_ADMIN_API_KEY: "test-api-key" GORILLA_INSECURE_ALLOW_API_KEY_ADMIN_ACCESS: "true" + resources: + requests: {} + limits: {} + +api: + resources: + requests: {} + limits: {} + +glue: + resources: + requests: {} + limits: {} + +parquet: + resources: + requests: {} + limits: {} + +weave: + resources: + requests: {} + limits: {} + +console: + resources: + requests: {} + limits: {} ingress: install: false @@ -22,5 +50,11 @@ ingress: mysql: install: true + resources: + requests: {} + limits: {} redis: install: true + resources: + requests: {} + limits: {}