Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump workflow-job plugin version to 2.39 #442

Merged
merged 3 commits into from
Jul 19, 2020
Merged
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
10 changes: 10 additions & 0 deletions chart/index.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
apiVersion: v1
entries:
jenkins-operator:
- apiVersion: v2
appVersion: 0.4.0
created: "2020-07-19T17:26:48.811339047+02:00"
description: Kubernetes native operator which fully manages Jenkins on Kubernetes
digest: edbeeef69b7ff17d1f63f5b1bffe45c4cd5b8aa2bb329e828232d6d05fc5f1b7
icon: https://raw.githubusercontent.com/jenkinsci/kubernetes-operator/master/assets/jenkins-operator-icon.png
name: jenkins-operator
urls:
- https://raw.githubusercontent.com/jenkinsci/kubernetes-operator/master/chart/jenkins-operator/jenkins-operator-0.3.4.tgz
version: 0.3.4
- apiVersion: v2
appVersion: 0.4.0
created: "2020-06-18T11:48:46.186259+02:00"
Expand Down
2 changes: 1 addition & 1 deletion chart/jenkins-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ apiVersion: v2
appVersion: "0.4.0"
description: Kubernetes native operator which fully manages Jenkins on Kubernetes
name: jenkins-operator
version: 0.3.3
version: 0.3.4
icon: https://raw.githubusercontent.com/jenkinsci/kubernetes-operator/master/assets/jenkins-operator-icon.png
Binary file not shown.
24 changes: 19 additions & 5 deletions chart/jenkins-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,21 @@ jenkins:
# version: "1.29"
# - name: kubernetes-credentials-provider
# version: 0.12.1
basePlugins: []
basePlugins:
- name: kubernetes
version: "1.25.2"
- name: workflow-job
version: "2.39"
- name: workflow-aggregator
version: "2.6"
- name: git
version: "4.2.2"
- name: job-dsl
version: "1.77"
- name: configuration-as-code
version: "1.38"
- name: kubernetes-credentials-provider
version: "0.13"

# plugins are plugins required by the user
# You can define plugins here
Expand Down Expand Up @@ -197,11 +211,11 @@ jenkins:
# See https://jenkinsci.github.io/kubernetes-operator/docs/getting-started/latest/customization/ for details
configuration:
configurationAsCode: {}
# - configMapName: jenkins-casc
# content: {}
# - configMapName: jenkins-casc
# content: {}
groovyScripts: {}
# - configMapName: jenkins-gs
# content: {}
# - configMapName: jenkins-gs
# content: {}

# secretRefName of existing secret (previously created)
secretRefName: ""
Expand Down
2 changes: 1 addition & 1 deletion deploy/crds/jenkins.io_jenkins_crd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ spec:
basePlugins:
description: 'BasePlugins contains plugins required by operator
Defaults to : - name: kubernetes version: 1.15.7 - name: workflow-job
version: "2.32" - name: workflow-aggregator version: "2.6" - name:
version: "2.39" - name: workflow-aggregator version: "2.6" - name:
git version: 3.10.0 - name: job-dsl version: "1.74" - name: configuration-as-code
version: "1.19" - name: kubernetes-credentials-provider version: 0.12.1'
items:
Expand Down
2 changes: 1 addition & 1 deletion deploy/crds/jenkins_v1alpha2_jenkinsimage_cr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ spec:
- name: kubernetes
version: "1.15.7"
- name: workflow-job
version: "2.32"
version: "2.39"
- name: workflow-aggregator
version: "2.6"
- name: git
Expand Down
2 changes: 1 addition & 1 deletion pkg/apis/jenkins/v1alpha2/jenkins_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ type JenkinsMaster struct {
// - name: kubernetes
// version: 1.15.7
// - name: workflow-job
// version: "2.32"
// version: "2.39"
// - name: workflow-aggregator
// version: "2.6"
// - name: git
Expand Down
2 changes: 1 addition & 1 deletion pkg/plugins/base_plugins.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const (
kubernetesCredentialsProviderPlugin = "kubernetes-credentials-provider:0.13"
kubernetesPlugin = "kubernetes:1.25.2"
workflowAggregatorPlugin = "workflow-aggregator:2.6"
workflowJobPlugin = "workflow-job:2.38"
workflowJobPlugin = "workflow-job:2.39"
)

// basePluginsList contains plugins to install by operator.
Expand Down
2 changes: 1 addition & 1 deletion website/content/en/docs/Getting Started/latest/schema.md
Original file line number Diff line number Diff line change
Expand Up @@ -1083,7 +1083,7 @@ Defaults to :
- name: kubernetes
version: 1.15.7
- name: workflow-job
version: “2.32”
version: “2.39”
- name: workflow-aggregator
version: “2.6”
- name: git
Expand Down