diff --git a/README.md b/README.md index 806864ef..f65b4c32 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Jenkins Operator -[](https://github.com/jenkinsci/kubernetes-operator/releases/tag/v0.1.0) +[](https://github.com/jenkinsci/kubernetes-operator/releases/tag/v0.1.1) [](https://travis-ci.org/jenkinsci/kubernetes-operator) [](https://goreportcard.com/report/github.com/jenkinsci/kubernetes-operator) [](https://hub.docker.com/r/virtuslab/jenkins-operator/tags) diff --git a/VERSION.txt b/VERSION.txt index b82608c0..8308b63a 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -v0.1.0 +v0.1.1 diff --git a/deploy/all-in-one-v1alpha2.yaml b/deploy/all-in-one-v1alpha2.yaml index 3c91c04d..9fda8470 100644 --- a/deploy/all-in-one-v1alpha2.yaml +++ b/deploy/all-in-one-v1alpha2.yaml @@ -70,6 +70,7 @@ rules: resources: - events verbs: + - watch - list - create - patch @@ -125,7 +126,7 @@ spec: serviceAccountName: jenkins-operator containers: - name: jenkins-operator - image: virtuslab/jenkins-operator:v0.1.0 + image: virtuslab/jenkins-operator:v0.1.1 command: - jenkins-operator args: [] diff --git a/deploy/operator.yaml b/deploy/operator.yaml index b16cc69d..64890cee 100644 --- a/deploy/operator.yaml +++ b/deploy/operator.yaml @@ -16,7 +16,7 @@ spec: serviceAccountName: jenkins-operator containers: - name: jenkins-operator - image: virtuslab/jenkins-operator:v0.1.0 + image: virtuslab/jenkins-operator:v0.1.1 command: - jenkins-operator args: [] diff --git a/docs/jenkins-v1alpha2-scheme.md b/docs/jenkins-v1alpha2-scheme.md index 26c82943..de25e2ae 100644 --- a/docs/jenkins-v1alpha2-scheme.md +++ b/docs/jenkins-v1alpha2-scheme.md @@ -696,6 +696,25 @@ More info: +Kubernetes core/v1.PodSecurityContext + + + +
SecurityContext that applies to all the containers of the Jenkins +Master. As per kubernetes specification, it can be overridden +for each container individually. +Defaults to: +runAsUser: 1000 +fsGroup: 1000
+containers
@@ -1046,6 +1065,30 @@ bool
BackupDoneBeforePodDeletion tells if backup before pod deletion has been made
userAndPasswordHash
+
+string
+
+UserAndPasswordHash is a SHA256 hash made from user and password
+createdSeedJobs
+
+[]string
+
+CreatedSeedJobs contains list of seed job id already created in Jenkins
+Name is the name of Jenkins plugin
Version is the version of Jenkins plugin
Generated with gen-crd-api-reference-docs
-on git commit a5db6e9.
+on git commit 37e531a.