From 46bce246e402c5d03f9f90b25ba3b8cab02dd004 Mon Sep 17 00:00:00 2001 From: Garry O'Donnell Date: Mon, 20 Jan 2025 10:56:19 +0000 Subject: [PATCH] fix: increase OPA resource requests to prevent erroneous autoscaling during startup --- charts/opa/Chart.yaml | 2 +- charts/opa/values.yaml | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/charts/opa/Chart.yaml b/charts/opa/Chart.yaml index 5ac65a6..399fea9 100644 --- a/charts/opa/Chart.yaml +++ b/charts/opa/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: opa description: An OPA deployment to run alongside applications requiring authorization type: application -version: 0.6.3 +version: 0.6.4 appVersion: 0.59.0 maintainers: - name: garryod diff --git a/charts/opa/values.yaml b/charts/opa/values.yaml index 8adf3ec..a92717c 100644 --- a/charts/opa/values.yaml +++ b/charts/opa/values.yaml @@ -47,7 +47,13 @@ ingress: hosts: [] tls: [] -resources: {} +resources: + requests: + cpu: 1000m + memory: 2Gi + limits: + cpu: 1000m + memory: 2Gi replicaCount: 1