UNCLASSIFIED

Commit ac801c3e authored by kevin.wilder's avatar kevin.wilder
Browse files

Merge branch 'resource-request-qos' into 'main'

Set resource limit = requests

See merge request !36
parents dab8ca2b 5f84935d
Pipeline #441859 passed with stages
in 6 minutes and 22 seconds
......@@ -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
......
......@@ -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
......
......@@ -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
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment