[stable/jenkins] Add pvc permissions to role (#17973)

* Add persistentvolumeclaims to role

Required for supporting the new dynamic pvc workspace functionality

Signed-off-by: Patrick Ruckstuhl <patrick@ch.tario.org>

* Adjust chart version and add changelog

Signed-off-by: Patrick Ruckstuhl <patrick@ch.tario.org>
This commit is contained in:
Patrick Ruckstuhl
2019-10-15 02:01:53 -07:00
committed by Kubernetes Prow Robot
parent 153ab3c184
commit 23ac4636c0
3 changed files with 6 additions and 2 deletions
+4
View File
@@ -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.7
Add persistentvolumeclaim permission to the role to support new dynamic pvc workspaces.
## 1.7.6
Updated `master.slaveKubernetesNamespace` to parse helm templates.
+1 -1
View File
@@ -1,7 +1,7 @@
apiVersion: v1
name: jenkins
home: https://jenkins.io/
version: 1.7.6
version: 1.7.7
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
+1 -1
View File
@@ -15,7 +15,7 @@ metadata:
"app.kubernetes.io/component": "{{ .Values.master.componentName }}"
rules:
- apiGroups: [""]
resources: ["pods", "pods/exec", "pods/log"]
resources: ["pods", "pods/exec", "pods/log", "persistentvolumeclaims"]
verbs: ["*"]
---