mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[jenkins/stable] Update jenkins slave defaults (#17168)
* raise defaults for jenkins-slave resources. Signed-off-by: Kaiwalya Joshi <kjoshi@mesosphere.com> * Update README. Signed-off-by: Kaiwalya Joshi <kjoshi@mesosphere.com> * Update Changelog and chart version to 1.7.1 Signed-off-by: Kaiwalya Joshi <kjoshi@mesosphere.com>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
67a6776ed1
commit
b38754faf4
@@ -6,6 +6,10 @@ numbering uses [semantic versioning](http://semver.org).
|
||||
|
||||
NOTE: The change log until version 1.5.7 is auto generated based on git commits. Those include a reference to the git commit to be able to get more details.
|
||||
|
||||
## 1.7.1
|
||||
|
||||
Update the default requirements for jenkins-slave to 512Mi which fixes frequently encountered [issue #3723](https://github.com/helm/charts/issues/3723)
|
||||
|
||||
## 1.7.0
|
||||
|
||||
[Jenkins Configuration as Code Plugin](https://github.com/jenkinsci/configuration-as-code-plugin) default configuration can now be enabled via `master.JCasC.defaultConfig`.
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
apiVersion: v1
|
||||
name: jenkins
|
||||
home: https://jenkins.io/
|
||||
version: 1.7.0
|
||||
version: 1.7.1
|
||||
appVersion: lts
|
||||
description: Open source continuous integration server. It supports multiple SCM tools
|
||||
including CVS, Subversion and Git. It can execute Apache Ant and Apache Maven-based
|
||||
|
||||
@@ -188,7 +188,7 @@ Some third-party systems, e.g. GitHub, use HTML-formatted data in their payload
|
||||
| `agent.imagePullSecret` | Agent image pull secret | Not set |
|
||||
| `agent.tag` | Agent image tag | `3.27-1` |
|
||||
| `agent.privileged` | Agent privileged container | `false` |
|
||||
| `agent.resources` | Resources allocation (Requests and Limits) | `{requests: {cpu: 200m, memory: 256Mi}, limits: {cpu: 200m, memory: 256Mi}}`|
|
||||
| `agent.resources` | Resources allocation (Requests and Limits) | `{requests: {cpu: 512m, memory: 512Mi}, limits: {cpu: 512m, memory: 512Mi}}`|
|
||||
| `agent.volumes` | Additional volumes | `nil` |
|
||||
| `agent.envVars` | Environment variables for the agent Pod | Not set |
|
||||
| `agent.command` | Executed command when side container starts | Not set |
|
||||
|
||||
@@ -364,11 +364,11 @@ agent:
|
||||
privileged: false
|
||||
resources:
|
||||
requests:
|
||||
cpu: "200m"
|
||||
memory: "256Mi"
|
||||
cpu: "512m"
|
||||
memory: "512Mi"
|
||||
limits:
|
||||
cpu: "200m"
|
||||
memory: "256Mi"
|
||||
cpu: "512m"
|
||||
memory: "512Mi"
|
||||
# You may want to change this to true while testing a new image
|
||||
alwaysPullImage: false
|
||||
# Controls how agent pods are retained after the Jenkins build completes
|
||||
|
||||
Reference in New Issue
Block a user