Skip to content

Commit 4460377

Browse files
committed
re-enable jenkins autoprovisioning
1 parent c452daf commit 4460377

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pkg/build/admission/jenkinsbootstrapper/admission.go

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

5555
func (a *jenkingsBootstrapper) 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/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)