Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions charts/jenkins/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ Use the following links to reference issues, PRs, and commits prior to v2.6.0.
The changelog until v1.5.7 was auto-generated based on git commits.
Those entries include a reference to the git commit to be able to get more details.

## 5.8.57

Update the agent pod's default cpu requests/limits from `512m` to `500m`

## 5.8.56

Update `jenkins/inbound-agent` to version `3309.v27b_9314fd1a_4-4`
Expand Down
2 changes: 1 addition & 1 deletion charts/jenkins/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: jenkins
type: application
home: https://www.jenkins.io/
version: 5.8.56
version: 5.8.57
appVersion: 2.504.2
description: >
Jenkins - Build great things at any scale! As the leading open source automation server, Jenkins provides over 2000 plugins to support building, deploying and automating any project.
Expand Down
2 changes: 1 addition & 1 deletion charts/jenkins/VALUES.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ The following tables list the configurable parameters of the Jenkins chart and t
| [agent.podRetention](./values.yaml#L1009) | string | | `"Never"` |
| [agent.podTemplates](./values.yaml#L1183) | object | Configures extra pod templates for the default kubernetes cloud | `{}` |
| [agent.privileged](./values.yaml#L973) | bool | Agent privileged container | `false` |
| [agent.resources](./values.yaml#L981) | object | Resources allocation (Requests and Limits) | `{"limits":{"cpu":"512m","memory":"512Mi"},"requests":{"cpu":"512m","memory":"512Mi"}}` |
| [agent.resources](./values.yaml#L981) | object | Resources allocation (Requests and Limits) | `{"limits":{"cpu":"500m","memory":"512Mi"},"requests":{"cpu":"500m","memory":"512Mi"}}` |
| [agent.restrictedPssSecurityContext](./values.yaml#L1006) | bool | Set a restricted securityContext on jnlp containers | `false` |
| [agent.retentionTimeout](./values.yaml#L947) | int | Time in minutes after which the Kubernetes cloud plugin will clean up an idle worker that has not already terminated | `5` |
| [agent.runAsGroup](./values.yaml#L977) | string | Configure container group | `nil` |
Expand Down
4 changes: 2 additions & 2 deletions charts/jenkins/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -980,11 +980,11 @@ agent:
# -- Resources allocation (Requests and Limits)
resources:
requests:
cpu: "512m"
cpu: "500m"
memory: "512Mi"
# ephemeralStorage:
limits:
cpu: "512m"
cpu: "500m"
memory: "512Mi"
# ephemeralStorage:
livenessProbe: {}
Expand Down
Loading