From 940c3fe0c8b287d2e0d5e03c789fba969a8f3ce9 Mon Sep 17 00:00:00 2001 From: Jordan McClintock Date: Wed, 27 May 2026 16:16:05 -0400 Subject: [PATCH] feat: chart only requests and limits --- .github/container-and-chart/helm/chart/Chart.yaml | 2 +- .../helm/chart/templates/deployment.yaml | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/container-and-chart/helm/chart/Chart.yaml b/.github/container-and-chart/helm/chart/Chart.yaml index a5049fd..b846145 100644 --- a/.github/container-and-chart/helm/chart/Chart.yaml +++ b/.github/container-and-chart/helm/chart/Chart.yaml @@ -18,7 +18,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.1.1 +version: 0.1.2 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/.github/container-and-chart/helm/chart/templates/deployment.yaml b/.github/container-and-chart/helm/chart/templates/deployment.yaml index 0c3acaa..ceaccbc 100644 --- a/.github/container-and-chart/helm/chart/templates/deployment.yaml +++ b/.github/container-and-chart/helm/chart/templates/deployment.yaml @@ -40,3 +40,10 @@ spec: - secretRef: name: {{ .Values.sso.secretName }} {{- end }} + resources: + limits: + cpu: 500m + memory: 512Mi + requests: + cpu: 200m + memory: 256Mi