Skip to content

Commit 354b6c8

Browse files
committed
re-enable jenkins autoprovisioning
1 parent b3871bb commit 354b6c8

File tree

6 files changed

+26
-6
lines changed

6 files changed

+26
-6
lines changed

api/swagger-spec/oapi-v1.json

+11-1
Original file line numberDiff line numberDiff line change
@@ -21416,7 +21416,8 @@
2141621416
"description": "BuildConfigSpec describes when and how builds are created",
2141721417
"required": [
2141821418
"triggers",
21419-
"strategy"
21419+
"strategy",
21420+
"nodeSelector"
2142021421
],
2142121422
"properties": {
2142221423
"triggers": {
@@ -21462,6 +21463,10 @@
2146221463
"type": "integer",
2146321464
"format": "int64",
2146421465
"description": "completionDeadlineSeconds is an optional duration in seconds, counted from the time when a build pod gets scheduled in the system, that the build may be active on a node before the system actively tries to terminate the build; value must be positive integer"
21466+
},
21467+
"nodeSelector": {
21468+
"type": "object",
21469+
"description": "nodeSelector is a selector which must be true for the build pod to fit on a node"
2146521470
}
2146621471
}
2146721472
},
@@ -22477,6 +22482,7 @@
2247722482
"description": "BuildSpec has the information to represent a build and also additional information about a build",
2247822483
"required": [
2247922484
"strategy",
22485+
"nodeSelector",
2248022486
"triggeredBy"
2248122487
],
2248222488
"properties": {
@@ -22513,6 +22519,10 @@
2251322519
"format": "int64",
2251422520
"description": "completionDeadlineSeconds is an optional duration in seconds, counted from the time when a build pod gets scheduled in the system, that the build may be active on a node before the system actively tries to terminate the build; value must be positive integer"
2251522521
},
22522+
"nodeSelector": {
22523+
"type": "object",
22524+
"description": "nodeSelector is a selector which must be true for the build pod to fit on a node"
22525+
},
2251622526
"triggeredBy": {
2251722527
"type": "array",
2251822528
"items": {

api/swagger-spec/openshift-openapi-spec.json

+11-1
Original file line numberDiff line numberDiff line change
@@ -44686,14 +44686,19 @@
4468644686
"description": "BuildConfigSpec describes when and how builds are created",
4468744687
"required": [
4468844688
"triggers",
44689-
"strategy"
44689+
"strategy",
44690+
"nodeSelector"
4469044691
],
4469144692
"properties": {
4469244693
"completionDeadlineSeconds": {
4469344694
"description": "completionDeadlineSeconds is an optional duration in seconds, counted from the time when a build pod gets scheduled in the system, that the build may be active on a node before the system actively tries to terminate the build; value must be positive integer",
4469444695
"type": "integer",
4469544696
"format": "int64"
4469644697
},
44698+
"nodeSelector": {
44699+
"description": "nodeSelector is a selector which must be true for the build pod to fit on a node",
44700+
"type": "object"
44701+
},
4469744702
"output": {
4469844703
"$ref": "#/definitions/v1.BuildOutput"
4469944704
},
@@ -44919,6 +44924,7 @@
4491944924
"description": "BuildSpec has the information to represent a build and also additional information about a build",
4492044925
"required": [
4492144926
"strategy",
44927+
"nodeSelector",
4492244928
"triggeredBy"
4492344929
],
4492444930
"properties": {
@@ -44927,6 +44933,10 @@
4492744933
"type": "integer",
4492844934
"format": "int64"
4492944935
},
44936+
"nodeSelector": {
44937+
"description": "nodeSelector is a selector which must be true for the build pod to fit on a node",
44938+
"type": "object"
44939+
},
4493044940
"output": {
4493144941
"$ref": "#/definitions/v1.BuildOutput"
4493244942
},

pkg/build/admission/jenkinsbootstrapper/admission.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ func NewJenkinsBootstrapper(serviceClient coreclient.ServicesGetter) admission.I
5353
}
5454

5555
func (a *jenkinsBootstrapper) Admit(attributes admission.Attributes) error {
56-
if a.jenkinsConfig.AutoProvisionEnabled == nil || !*a.jenkinsConfig.AutoProvisionEnabled {
56+
if a.jenkinsConfig.AutoProvisionEnabled != nil && !*a.jenkinsConfig.AutoProvisionEnabled {
5757
return nil
5858
}
5959
if len(attributes.GetSubresource()) != 0 {

pkg/cmd/server/api/types.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ type AuditConfig struct {
331331
type JenkinsPipelineConfig struct {
332332
// AutoProvisionEnabled determines whether a Jenkins server will be spawned from the provided
333333
// template when the first build config in the project with type JenkinsPipeline
334-
// is created. When not specified this option defaults to false.
334+
// is created. When not specified this option defaults to true.
335335
AutoProvisionEnabled *bool
336336
// TemplateNamespace contains the namespace name where the Jenkins template is stored
337337
TemplateNamespace string

pkg/cmd/server/api/v1/swagger_doc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ func (ImagePolicyConfig) SwaggerDoc() map[string]string {
308308

309309
var map_JenkinsPipelineConfig = map[string]string{
310310
"": "JenkinsPipelineConfig holds configuration for the Jenkins pipeline strategy",
311-
"autoProvisionEnabled": "AutoProvisionEnabled determines whether a Jenkins server will be spawned from the provided template when the first build config in the project with type JenkinsPipeline is created. When not specified this option defaults to false.",
311+
"autoProvisionEnabled": "AutoProvisionEnabled determines whether a Jenkins server will be spawned from the provided template when the first build config in the project with type JenkinsPipeline is created. When not specified this option defaults to true.",
312312
"templateNamespace": "TemplateNamespace contains the namespace name where the Jenkins template is stored",
313313
"templateName": "TemplateName is the name of the default Jenkins template",
314314
"serviceName": "ServiceName is the name of the Jenkins service OpenShift uses to detect whether a Jenkins pipeline handler has already been installed in a project. This value *must* match a service name in the provided template.",

pkg/cmd/server/api/v1/types.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ type AuditConfig struct {
257257
type JenkinsPipelineConfig struct {
258258
// AutoProvisionEnabled determines whether a Jenkins server will be spawned from the provided
259259
// template when the first build config in the project with type JenkinsPipeline
260-
// is created. When not specified this option defaults to false.
260+
// is created. When not specified this option defaults to true.
261261
AutoProvisionEnabled *bool `json:"autoProvisionEnabled"`
262262
// TemplateNamespace contains the namespace name where the Jenkins template is stored
263263
TemplateNamespace string `json:"templateNamespace"`

0 commit comments

Comments
 (0)