mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[stable/jenkins] update plugin version & sidecar container (#22008)
* [stable/jenkins] update plugin version & sidecar container Signed-off-by: Torsten Walter <torsten.walter@syncier.com> * Test additional values Signed-off-by: Torsten Walter <torsten.walter@syncier.com>
This commit is contained in:
@@ -5,6 +5,21 @@ 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.15.0 Update plugin versions & sidecar container
|
||||
|
||||
| plugin | old version | new version |
|
||||
| --------------------- | ----------- | ----------- |
|
||||
| kubernetes | 1.25.1 | 1.25.3 |
|
||||
| workflow-job | 2.36 | 2.38 |
|
||||
| git | 4.2.0 | 4.2.2 |
|
||||
| configuration-as-code | 1.36 | 1.39 |
|
||||
|
||||
configAutoReload container updated from `kiwigrid/k8s-sidecar:0.1.20` to `kiwigrid/k8s-sidecar:0.1.132`
|
||||
|
||||
## 1.14.0
|
||||
|
||||
support auto-reload container environment variables configuration
|
||||
|
||||
## 1.13.3
|
||||
|
||||
Fix wrong indent in tolerations
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
apiVersion: v1
|
||||
name: jenkins
|
||||
home: https://jenkins.io/
|
||||
version: 1.14.0
|
||||
version: 1.15.0
|
||||
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
|
||||
|
||||
@@ -0,0 +1,37 @@
|
||||
agent:
|
||||
resources:
|
||||
limits:
|
||||
cpu: "1"
|
||||
memory: "2048Mi"
|
||||
additionalAgents:
|
||||
maven:
|
||||
podName: maven
|
||||
customJenkinsLabels: maven
|
||||
# An example of overriding the jnlp container
|
||||
# sideContainerName: jnlp
|
||||
image: jenkins/jnlp-agent-maven
|
||||
tag: latest
|
||||
python:
|
||||
podName: python
|
||||
customJenkinsLabels: python
|
||||
sideContainerName: python
|
||||
image: python
|
||||
tag: "3"
|
||||
command: "/bin/sh -c"
|
||||
args: "cat"
|
||||
TTYEnabled: true
|
||||
podTemplates:
|
||||
python: |
|
||||
- name: python
|
||||
label: jenkins-python
|
||||
containers:
|
||||
- name: python
|
||||
image: python:3
|
||||
command: "/bin/sh -c"
|
||||
args: "cat"
|
||||
ttyEnabled: true
|
||||
privileged: true
|
||||
resourceRequestCpu: "400m"
|
||||
resourceRequestMemory: "512Mi"
|
||||
resourceLimitCpu: "1"
|
||||
resourceLimitMemory: "1024Mi"
|
||||
@@ -212,11 +212,11 @@ master:
|
||||
|
||||
# List of plugins to be install during Jenkins master start
|
||||
installPlugins:
|
||||
- kubernetes:1.25.1
|
||||
- workflow-job:2.36
|
||||
- kubernetes:1.25.3
|
||||
- workflow-job:2.38
|
||||
- workflow-aggregator:2.6
|
||||
- credentials-binding:1.21
|
||||
- git:4.2.0
|
||||
- git:4.2.2
|
||||
|
||||
# Enable to always override the installed plugins with the values of 'master.installPlugins' on upgrade or redeployment.
|
||||
# overwritePlugins: true
|
||||
@@ -252,7 +252,7 @@ master:
|
||||
JCasC:
|
||||
enabled: false
|
||||
defaultConfig: false
|
||||
pluginVersion: "1.36"
|
||||
pluginVersion: "1.39"
|
||||
configScripts: {}
|
||||
# welcome-message: |
|
||||
# jenkins:
|
||||
@@ -270,7 +270,7 @@ master:
|
||||
# jcasc changes will cause a reboot and will only be applied at the subsequent start-up. Auto-reload uses the
|
||||
# http://<jenkins_url>/reload-configuration-as-code endpoint to reapply config when changes to the configScripts are detected.
|
||||
enabled: false
|
||||
image: kiwigrid/k8s-sidecar:0.1.20
|
||||
image: kiwigrid/k8s-sidecar:0.1.132
|
||||
imagePullPolicy: IfNotPresent
|
||||
resources: {}
|
||||
# limits:
|
||||
|
||||
Reference in New Issue
Block a user