diff --git a/stable/jenkins/CHANGELOG.md b/stable/jenkins/CHANGELOG.md index d544d5b45c..e319149156 100644 --- a/stable/jenkins/CHANGELOG.md +++ b/stable/jenkins/CHANGELOG.md @@ -5,6 +5,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.11.3 + +Update the kubernetes plugin from 1.24.1 to 1.25.1 and grant 'watch' permission to 'events' which is required since this plugin version. + ## 1.11.2 Configure agent.args in values.yaml ## 1.11.1 Support for master.additionalConfig diff --git a/stable/jenkins/Chart.yaml b/stable/jenkins/Chart.yaml index a1dd1d36f2..9ea18c7e65 100644 --- a/stable/jenkins/Chart.yaml +++ b/stable/jenkins/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: jenkins home: https://jenkins.io/ -version: 1.11.2 +version: 1.11.3 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 diff --git a/stable/jenkins/templates/rbac.yaml b/stable/jenkins/templates/rbac.yaml index 58c36f1b83..396d68bd75 100644 --- a/stable/jenkins/templates/rbac.yaml +++ b/stable/jenkins/templates/rbac.yaml @@ -15,7 +15,7 @@ metadata: "app.kubernetes.io/component": "{{ .Values.master.componentName }}" rules: - apiGroups: [""] - resources: ["pods", "pods/exec", "pods/log", "persistentvolumeclaims"] + resources: ["pods", "pods/exec", "pods/log", "persistentvolumeclaims", "events"] verbs: ["get", "list", "watch"] - apiGroups: [""] resources: ["pods", "pods/exec", "persistentvolumeclaims"] diff --git a/stable/jenkins/values.yaml b/stable/jenkins/values.yaml index 62edac845e..7b9c3dba1d 100644 --- a/stable/jenkins/values.yaml +++ b/stable/jenkins/values.yaml @@ -212,7 +212,7 @@ master: # List of plugins to be install during Jenkins master start installPlugins: - - kubernetes:1.24.1 + - kubernetes:1.25.1 - workflow-job:2.36 - workflow-aggregator:2.6 - credentials-binding:1.21