UNCLASSIFIED

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

Merge branch 'add-limits-resources' into 'main'

Add resource request and limits

See merge request !15
parents 76d23e1d 616e8877
Pipeline #441811 passed with stages
in 5 minutes and 38 seconds
# Changelog # Changelog
--- ---
## [29.1.0-bb.8] - 2021-08-23
### Added
- Added resource requests and limits to pods with guaranteed QoS.
## [29.1.0-bb.7] - 2021-07-27 ## [29.1.0-bb.7] - 2021-07-27
### Fixes ### Fixes
- Fixed extraLabels indentation in all resources that have it. - Fixed extraLabels indentation in all resources that have it.
......
apiVersion: v2 apiVersion: v2
name: nexus-repository-manager name: nexus-repository-manager
version: 29.1.0-bb.7 version: 29.1.0-bb.8
appVersion: 3.29.0 appVersion: 3.29.0
description: Sonatype Nexus Repository Manager - Universal Binary repository description: Sonatype Nexus Repository Manager - Universal Binary repository
type: application type: application
......
...@@ -124,7 +124,7 @@ nexus: ...@@ -124,7 +124,7 @@ nexus:
nodeSelector: {} nodeSelector: {}
# cloud.google.com/gke-nodepool: default-pool # cloud.google.com/gke-nodepool: default-pool
affinity: {} affinity: {}
resources: {} resources:
# requests: # requests:
## Based on https://support.sonatype.com/hc/en-us/articles/115006448847#mem ## Based on https://support.sonatype.com/hc/en-us/articles/115006448847#mem
## and https://twitter.com/analytically/status/894592422382063616: ## and https://twitter.com/analytically/status/894592422382063616:
...@@ -136,6 +136,12 @@ nexus: ...@@ -136,6 +136,12 @@ nexus:
## to use all the available memory. ## to use all the available memory.
# cpu: 250m # cpu: 250m
# memory: 4800Mi # memory: 4800Mi
requests:
cpu: 400m # Values for testing and pipeline pursoses. If deploying for production use please modify these values.
memory: 3000Mi
limits:
cpu: 400m
memory: 3000Mi
# The ports should only be changed if the nexus image uses a different port # The ports should only be changed if the nexus image uses a different port
nexusPort: 8081 nexusPort: 8081
......
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