File tree 3 files changed +3
-3
lines changed
build/admission/jenkinsbootstrapper
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ func NewJenkingsBootstrapper(serviceClient coreclient.ServicesGetter) admission.
53
53
}
54
54
55
55
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 {
57
57
return nil
58
58
}
59
59
if len (attributes .GetSubresource ()) != 0 {
Original file line number Diff line number Diff line change @@ -331,7 +331,7 @@ type AuditConfig struct {
331
331
type JenkinsPipelineConfig struct {
332
332
// AutoProvisionEnabled determines whether a Jenkins server will be spawned from the provided
333
333
// 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 .
335
335
AutoProvisionEnabled * bool
336
336
// TemplateNamespace contains the namespace name where the Jenkins template is stored
337
337
TemplateNamespace string
Original file line number Diff line number Diff line change @@ -257,7 +257,7 @@ type AuditConfig struct {
257
257
type JenkinsPipelineConfig struct {
258
258
// AutoProvisionEnabled determines whether a Jenkins server will be spawned from the provided
259
259
// 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 .
261
261
AutoProvisionEnabled * bool `json:"autoProvisionEnabled"`
262
262
// TemplateNamespace contains the namespace name where the Jenkins template is stored
263
263
TemplateNamespace string `json:"templateNamespace"`
You can’t perform that action at this time.
0 commit comments