From 5f84935dc49fdf628a6143a9cbe3ce7f5e878f24 Mon Sep 17 00:00:00 2001 From: Tunde Oladipupo Date: Thu, 19 Aug 2021 15:33:40 -0500 Subject: [PATCH] update resource to guaranteed QOS --- CHANGELOG.md | 4 ++++ chart/Chart.yaml | 2 +- chart/values.yaml | 18 +++++++++--------- 3 files changed, 14 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ae4473d..b6989f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). --- +## [9.2.6-bb.15] - 2021-08-19 +### Changed +Update resource limits and requests to guaranteed QoS + ## [9.2.6-bb.14] - 2021-08-19 ### Added Resource limit and request for the deployment diff --git a/chart/Chart.yaml b/chart/Chart.yaml index ee44ce9..8bc8809 100644 --- a/chart/Chart.yaml +++ b/chart/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v1 appVersion: 8.9-community name: sonarqube description: SonarQube is an open sourced code quality scanning tool -version: 9.2.6-bb.14 +version: 9.2.6-bb.15 keywords: - coverage - security diff --git a/chart/values.yaml b/chart/values.yaml index c65467b..0683095 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -187,17 +187,17 @@ jvmOpts: "" # Set annotations for pods annotations: {} -resources: {} +resources: # We usually recommend not to specify default resources and to leave this as a conscious # choice for the user. This also increases chances charts run on environments with little # resources, such as Minikube. If you do want to specify resources, uncomment the following # lines, adjust them as necessary, and remove the curly braces after 'resources:'. -# limits: -# cpu: 100m -# memory: 128Mi -# requests: -# cpu: 100m -# memory: 128Mi + limits: + cpu: 100m + memory: 1.8Gi + requests: + cpu: 100m + memory: 1.8Gi persistence: enabled: false ## Set annotations on pvc @@ -279,8 +279,8 @@ postgresql: port: 5432 resources: limits: - cpu: 2 - memory: 2Gi + cpu: 100m + memory: 200Mi requests: cpu: 100m memory: 200Mi -- GitLab