github.com/olli-ai/jx/v2@v2.0.400-0.20210921045218-14731b4dd448/pkg/config/zz_generated.deepcopy.go (about) 1 // +build !ignore_autogenerated 2 3 // Code generated by deepcopy-gen. DO NOT EDIT. 4 5 package config 6 7 import ( 8 jenkinsfile "github.com/olli-ai/jx/v2/pkg/jenkinsfile" 9 v1 "k8s.io/api/core/v1" 10 ) 11 12 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 13 func (in *AddonConfig) DeepCopyInto(out *AddonConfig) { 14 *out = *in 15 return 16 } 17 18 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AddonConfig. 19 func (in *AddonConfig) DeepCopy() *AddonConfig { 20 if in == nil { 21 return nil 22 } 23 out := new(AddonConfig) 24 in.DeepCopyInto(out) 25 return out 26 } 27 28 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 29 func (in *AdminSecretsConfig) DeepCopyInto(out *AdminSecretsConfig) { 30 *out = *in 31 if in.ChartMuseum != nil { 32 in, out := &in.ChartMuseum, &out.ChartMuseum 33 *out = new(ChartMuseum) 34 **out = **in 35 } 36 if in.Grafana != nil { 37 in, out := &in.Grafana, &out.Grafana 38 *out = new(Grafana) 39 **out = **in 40 } 41 if in.Jenkins != nil { 42 in, out := &in.Jenkins, &out.Jenkins 43 *out = new(Jenkins) 44 **out = **in 45 } 46 if in.Nexus != nil { 47 in, out := &in.Nexus, &out.Nexus 48 *out = new(Nexus) 49 **out = **in 50 } 51 if in.PipelineSecrets != nil { 52 in, out := &in.PipelineSecrets, &out.PipelineSecrets 53 *out = new(PipelineSecrets) 54 **out = **in 55 } 56 if in.KanikoSecret != nil { 57 in, out := &in.KanikoSecret, &out.KanikoSecret 58 *out = new(KanikoSecret) 59 **out = **in 60 } 61 return 62 } 63 64 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AdminSecretsConfig. 65 func (in *AdminSecretsConfig) DeepCopy() *AdminSecretsConfig { 66 if in == nil { 67 return nil 68 } 69 out := new(AdminSecretsConfig) 70 in.DeepCopyInto(out) 71 return out 72 } 73 74 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 75 func (in *AdminSecretsFlags) DeepCopyInto(out *AdminSecretsFlags) { 76 *out = *in 77 return 78 } 79 80 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AdminSecretsFlags. 81 func (in *AdminSecretsFlags) DeepCopy() *AdminSecretsFlags { 82 if in == nil { 83 return nil 84 } 85 out := new(AdminSecretsFlags) 86 in.DeepCopyInto(out) 87 return out 88 } 89 90 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 91 func (in *AdminSecretsService) DeepCopyInto(out *AdminSecretsService) { 92 *out = *in 93 in.Secrets.DeepCopyInto(&out.Secrets) 94 out.Flags = in.Flags 95 out.ingressAuth = in.ingressAuth 96 return 97 } 98 99 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AdminSecretsService. 100 func (in *AdminSecretsService) DeepCopy() *AdminSecretsService { 101 if in == nil { 102 return nil 103 } 104 out := new(AdminSecretsService) 105 in.DeepCopyInto(out) 106 return out 107 } 108 109 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 110 func (in *Application) DeepCopyInto(out *Application) { 111 *out = *in 112 return 113 } 114 115 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Application. 116 func (in *Application) DeepCopy() *Application { 117 if in == nil { 118 return nil 119 } 120 out := new(Application) 121 in.DeepCopyInto(out) 122 return out 123 } 124 125 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 126 func (in *ApplicationConfig) DeepCopyInto(out *ApplicationConfig) { 127 *out = *in 128 if in.Applications != nil { 129 in, out := &in.Applications, &out.Applications 130 *out = make([]Application, len(*in)) 131 copy(*out, *in) 132 } 133 return 134 } 135 136 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplicationConfig. 137 func (in *ApplicationConfig) DeepCopy() *ApplicationConfig { 138 if in == nil { 139 return nil 140 } 141 out := new(ApplicationConfig) 142 in.DeepCopyInto(out) 143 return out 144 } 145 146 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 147 func (in *AutoUpdateConfig) DeepCopyInto(out *AutoUpdateConfig) { 148 *out = *in 149 return 150 } 151 152 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AutoUpdateConfig. 153 func (in *AutoUpdateConfig) DeepCopy() *AutoUpdateConfig { 154 if in == nil { 155 return nil 156 } 157 out := new(AutoUpdateConfig) 158 in.DeepCopyInto(out) 159 return out 160 } 161 162 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 163 func (in *AzureConfig) DeepCopyInto(out *AzureConfig) { 164 *out = *in 165 return 166 } 167 168 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureConfig. 169 func (in *AzureConfig) DeepCopy() *AzureConfig { 170 if in == nil { 171 return nil 172 } 173 out := new(AzureConfig) 174 in.DeepCopyInto(out) 175 return out 176 } 177 178 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 179 func (in *BasicAuth) DeepCopyInto(out *BasicAuth) { 180 *out = *in 181 return 182 } 183 184 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BasicAuth. 185 func (in *BasicAuth) DeepCopy() *BasicAuth { 186 if in == nil { 187 return nil 188 } 189 out := new(BasicAuth) 190 in.DeepCopyInto(out) 191 return out 192 } 193 194 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 195 func (in *BuildPackConfig) DeepCopyInto(out *BuildPackConfig) { 196 *out = *in 197 out.BuildPackLibrary = in.BuildPackLibrary 198 return 199 } 200 201 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BuildPackConfig. 202 func (in *BuildPackConfig) DeepCopy() *BuildPackConfig { 203 if in == nil { 204 return nil 205 } 206 out := new(BuildPackConfig) 207 in.DeepCopyInto(out) 208 return out 209 } 210 211 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 212 func (in *BuildPackLibrary) DeepCopyInto(out *BuildPackLibrary) { 213 *out = *in 214 return 215 } 216 217 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BuildPackLibrary. 218 func (in *BuildPackLibrary) DeepCopy() *BuildPackLibrary { 219 if in == nil { 220 return nil 221 } 222 out := new(BuildPackLibrary) 223 in.DeepCopyInto(out) 224 return out 225 } 226 227 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 228 func (in *ChartMuseum) DeepCopyInto(out *ChartMuseum) { 229 *out = *in 230 out.ChartMuseumEnv = in.ChartMuseumEnv 231 return 232 } 233 234 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ChartMuseum. 235 func (in *ChartMuseum) DeepCopy() *ChartMuseum { 236 if in == nil { 237 return nil 238 } 239 out := new(ChartMuseum) 240 in.DeepCopyInto(out) 241 return out 242 } 243 244 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 245 func (in *ChartMuseumEnv) DeepCopyInto(out *ChartMuseumEnv) { 246 *out = *in 247 out.ChartMuseumSecret = in.ChartMuseumSecret 248 return 249 } 250 251 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ChartMuseumEnv. 252 func (in *ChartMuseumEnv) DeepCopy() *ChartMuseumEnv { 253 if in == nil { 254 return nil 255 } 256 out := new(ChartMuseumEnv) 257 in.DeepCopyInto(out) 258 return out 259 } 260 261 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 262 func (in *ChartMuseumSecret) DeepCopyInto(out *ChartMuseumSecret) { 263 *out = *in 264 return 265 } 266 267 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ChartMuseumSecret. 268 func (in *ChartMuseumSecret) DeepCopy() *ChartMuseumSecret { 269 if in == nil { 270 return nil 271 } 272 out := new(ChartMuseumSecret) 273 in.DeepCopyInto(out) 274 return out 275 } 276 277 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 278 func (in *ChatConfig) DeepCopyInto(out *ChatConfig) { 279 *out = *in 280 return 281 } 282 283 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ChatConfig. 284 func (in *ChatConfig) DeepCopy() *ChatConfig { 285 if in == nil { 286 return nil 287 } 288 out := new(ChatConfig) 289 in.DeepCopyInto(out) 290 return out 291 } 292 293 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 294 func (in *ClusterConfig) DeepCopyInto(out *ClusterConfig) { 295 *out = *in 296 if in.AzureConfig != nil { 297 in, out := &in.AzureConfig, &out.AzureConfig 298 *out = new(AzureConfig) 299 **out = **in 300 } 301 if in.GKEConfig != nil { 302 in, out := &in.GKEConfig, &out.GKEConfig 303 *out = new(GKEConfig) 304 **out = **in 305 } 306 if in.DevEnvApprovers != nil { 307 in, out := &in.DevEnvApprovers, &out.DevEnvApprovers 308 *out = make([]string, len(*in)) 309 copy(*out, *in) 310 } 311 return 312 } 313 314 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterConfig. 315 func (in *ClusterConfig) DeepCopy() *ClusterConfig { 316 if in == nil { 317 return nil 318 } 319 out := new(ClusterConfig) 320 in.DeepCopyInto(out) 321 return out 322 } 323 324 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 325 func (in *EnabledConfig) DeepCopyInto(out *EnabledConfig) { 326 *out = *in 327 return 328 } 329 330 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EnabledConfig. 331 func (in *EnabledConfig) DeepCopy() *EnabledConfig { 332 if in == nil { 333 return nil 334 } 335 out := new(EnabledConfig) 336 in.DeepCopyInto(out) 337 return out 338 } 339 340 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 341 func (in *EnvironmentConfig) DeepCopyInto(out *EnvironmentConfig) { 342 *out = *in 343 out.Ingress = in.Ingress 344 return 345 } 346 347 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EnvironmentConfig. 348 func (in *EnvironmentConfig) DeepCopy() *EnvironmentConfig { 349 if in == nil { 350 return nil 351 } 352 out := new(EnvironmentConfig) 353 in.DeepCopyInto(out) 354 return out 355 } 356 357 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 358 func (in *ExposeController) DeepCopyInto(out *ExposeController) { 359 *out = *in 360 out.Config = in.Config 361 if in.Annotations != nil { 362 in, out := &in.Annotations, &out.Annotations 363 *out = make(map[string]string, len(*in)) 364 for key, val := range *in { 365 (*out)[key] = val 366 } 367 } 368 return 369 } 370 371 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExposeController. 372 func (in *ExposeController) DeepCopy() *ExposeController { 373 if in == nil { 374 return nil 375 } 376 out := new(ExposeController) 377 in.DeepCopyInto(out) 378 return out 379 } 380 381 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 382 func (in *ExposeControllerConfig) DeepCopyInto(out *ExposeControllerConfig) { 383 *out = *in 384 return 385 } 386 387 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExposeControllerConfig. 388 func (in *ExposeControllerConfig) DeepCopy() *ExposeControllerConfig { 389 if in == nil { 390 return nil 391 } 392 out := new(ExposeControllerConfig) 393 in.DeepCopyInto(out) 394 return out 395 } 396 397 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 398 func (in *GKEConfig) DeepCopyInto(out *GKEConfig) { 399 *out = *in 400 return 401 } 402 403 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GKEConfig. 404 func (in *GKEConfig) DeepCopy() *GKEConfig { 405 if in == nil { 406 return nil 407 } 408 out := new(GKEConfig) 409 in.DeepCopyInto(out) 410 return out 411 } 412 413 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 414 func (in *GithubAppConfig) DeepCopyInto(out *GithubAppConfig) { 415 *out = *in 416 return 417 } 418 419 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GithubAppConfig. 420 func (in *GithubAppConfig) DeepCopy() *GithubAppConfig { 421 if in == nil { 422 return nil 423 } 424 out := new(GithubAppConfig) 425 in.DeepCopyInto(out) 426 return out 427 } 428 429 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 430 func (in *Grafana) DeepCopyInto(out *Grafana) { 431 *out = *in 432 out.GrafanaSecret = in.GrafanaSecret 433 return 434 } 435 436 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Grafana. 437 func (in *Grafana) DeepCopy() *Grafana { 438 if in == nil { 439 return nil 440 } 441 out := new(Grafana) 442 in.DeepCopyInto(out) 443 return out 444 } 445 446 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 447 func (in *GrafanaSecret) DeepCopyInto(out *GrafanaSecret) { 448 *out = *in 449 return 450 } 451 452 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GrafanaSecret. 453 func (in *GrafanaSecret) DeepCopy() *GrafanaSecret { 454 if in == nil { 455 return nil 456 } 457 out := new(GrafanaSecret) 458 in.DeepCopyInto(out) 459 return out 460 } 461 462 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 463 func (in *HelmValuesConfig) DeepCopyInto(out *HelmValuesConfig) { 464 *out = *in 465 if in.ExposeController != nil { 466 in, out := &in.ExposeController, &out.ExposeController 467 *out = new(ExposeController) 468 (*in).DeepCopyInto(*out) 469 } 470 in.Jenkins.DeepCopyInto(&out.Jenkins) 471 out.Prow = in.Prow 472 out.PipelineSecrets = in.PipelineSecrets 473 if in.ControllerBuild != nil { 474 in, out := &in.ControllerBuild, &out.ControllerBuild 475 *out = new(EnabledConfig) 476 **out = **in 477 } 478 if in.ControllerWorkflow != nil { 479 in, out := &in.ControllerWorkflow, &out.ControllerWorkflow 480 *out = new(EnabledConfig) 481 **out = **in 482 } 483 if in.DockerRegistryEnabled != nil { 484 in, out := &in.DockerRegistryEnabled, &out.DockerRegistryEnabled 485 *out = new(EnabledConfig) 486 **out = **in 487 } 488 return 489 } 490 491 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HelmValuesConfig. 492 func (in *HelmValuesConfig) DeepCopy() *HelmValuesConfig { 493 if in == nil { 494 return nil 495 } 496 out := new(HelmValuesConfig) 497 in.DeepCopyInto(out) 498 return out 499 } 500 501 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 502 func (in *HelmValuesConfigService) DeepCopyInto(out *HelmValuesConfigService) { 503 *out = *in 504 in.Config.DeepCopyInto(&out.Config) 505 return 506 } 507 508 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HelmValuesConfigService. 509 func (in *HelmValuesConfigService) DeepCopy() *HelmValuesConfigService { 510 if in == nil { 511 return nil 512 } 513 out := new(HelmValuesConfigService) 514 in.DeepCopyInto(out) 515 return out 516 } 517 518 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 519 func (in *Image) DeepCopyInto(out *Image) { 520 *out = *in 521 return 522 } 523 524 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Image. 525 func (in *Image) DeepCopy() *Image { 526 if in == nil { 527 return nil 528 } 529 out := new(Image) 530 in.DeepCopyInto(out) 531 return out 532 } 533 534 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 535 func (in *IngressConfig) DeepCopyInto(out *IngressConfig) { 536 *out = *in 537 out.TLS = in.TLS 538 return 539 } 540 541 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IngressConfig. 542 func (in *IngressConfig) DeepCopy() *IngressConfig { 543 if in == nil { 544 return nil 545 } 546 out := new(IngressConfig) 547 in.DeepCopyInto(out) 548 return out 549 } 550 551 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 552 func (in *IssueTrackerConfig) DeepCopyInto(out *IssueTrackerConfig) { 553 *out = *in 554 return 555 } 556 557 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IssueTrackerConfig. 558 func (in *IssueTrackerConfig) DeepCopy() *IssueTrackerConfig { 559 if in == nil { 560 return nil 561 } 562 out := new(IssueTrackerConfig) 563 in.DeepCopyInto(out) 564 return out 565 } 566 567 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 568 func (in *Jenkins) DeepCopyInto(out *Jenkins) { 569 *out = *in 570 out.JenkinsSecret = in.JenkinsSecret 571 return 572 } 573 574 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Jenkins. 575 func (in *Jenkins) DeepCopy() *Jenkins { 576 if in == nil { 577 return nil 578 } 579 out := new(Jenkins) 580 in.DeepCopyInto(out) 581 return out 582 } 583 584 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 585 func (in *JenkinsAdminSecret) DeepCopyInto(out *JenkinsAdminSecret) { 586 *out = *in 587 return 588 } 589 590 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JenkinsAdminSecret. 591 func (in *JenkinsAdminSecret) DeepCopy() *JenkinsAdminSecret { 592 if in == nil { 593 return nil 594 } 595 out := new(JenkinsAdminSecret) 596 in.DeepCopyInto(out) 597 return out 598 } 599 600 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 601 func (in *JenkinsGiteaServersValuesConfig) DeepCopyInto(out *JenkinsGiteaServersValuesConfig) { 602 *out = *in 603 return 604 } 605 606 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JenkinsGiteaServersValuesConfig. 607 func (in *JenkinsGiteaServersValuesConfig) DeepCopy() *JenkinsGiteaServersValuesConfig { 608 if in == nil { 609 return nil 610 } 611 out := new(JenkinsGiteaServersValuesConfig) 612 in.DeepCopyInto(out) 613 return out 614 } 615 616 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 617 func (in *JenkinsGithubServersValuesConfig) DeepCopyInto(out *JenkinsGithubServersValuesConfig) { 618 *out = *in 619 return 620 } 621 622 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JenkinsGithubServersValuesConfig. 623 func (in *JenkinsGithubServersValuesConfig) DeepCopy() *JenkinsGithubServersValuesConfig { 624 if in == nil { 625 return nil 626 } 627 out := new(JenkinsGithubServersValuesConfig) 628 in.DeepCopyInto(out) 629 return out 630 } 631 632 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 633 func (in *JenkinsPipelineSecretsValuesConfig) DeepCopyInto(out *JenkinsPipelineSecretsValuesConfig) { 634 *out = *in 635 return 636 } 637 638 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JenkinsPipelineSecretsValuesConfig. 639 func (in *JenkinsPipelineSecretsValuesConfig) DeepCopy() *JenkinsPipelineSecretsValuesConfig { 640 if in == nil { 641 return nil 642 } 643 out := new(JenkinsPipelineSecretsValuesConfig) 644 in.DeepCopyInto(out) 645 return out 646 } 647 648 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 649 func (in *JenkinsServersGlobalConfig) DeepCopyInto(out *JenkinsServersGlobalConfig) { 650 *out = *in 651 if in.EnvVars != nil { 652 in, out := &in.EnvVars, &out.EnvVars 653 *out = make(map[string]string, len(*in)) 654 for key, val := range *in { 655 (*out)[key] = val 656 } 657 } 658 return 659 } 660 661 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JenkinsServersGlobalConfig. 662 func (in *JenkinsServersGlobalConfig) DeepCopy() *JenkinsServersGlobalConfig { 663 if in == nil { 664 return nil 665 } 666 out := new(JenkinsServersGlobalConfig) 667 in.DeepCopyInto(out) 668 return out 669 } 670 671 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 672 func (in *JenkinsServersValuesConfig) DeepCopyInto(out *JenkinsServersValuesConfig) { 673 *out = *in 674 if in.Gitea != nil { 675 in, out := &in.Gitea, &out.Gitea 676 *out = make([]JenkinsGiteaServersValuesConfig, len(*in)) 677 copy(*out, *in) 678 } 679 if in.GHE != nil { 680 in, out := &in.GHE, &out.GHE 681 *out = make([]JenkinsGithubServersValuesConfig, len(*in)) 682 copy(*out, *in) 683 } 684 in.Global.DeepCopyInto(&out.Global) 685 return 686 } 687 688 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JenkinsServersValuesConfig. 689 func (in *JenkinsServersValuesConfig) DeepCopy() *JenkinsServersValuesConfig { 690 if in == nil { 691 return nil 692 } 693 out := new(JenkinsServersValuesConfig) 694 in.DeepCopyInto(out) 695 return out 696 } 697 698 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 699 func (in *JenkinsValuesConfig) DeepCopyInto(out *JenkinsValuesConfig) { 700 *out = *in 701 in.Servers.DeepCopyInto(&out.Servers) 702 if in.Enabled != nil { 703 in, out := &in.Enabled, &out.Enabled 704 *out = new(bool) 705 **out = **in 706 } 707 return 708 } 709 710 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JenkinsValuesConfig. 711 func (in *JenkinsValuesConfig) DeepCopy() *JenkinsValuesConfig { 712 if in == nil { 713 return nil 714 } 715 out := new(JenkinsValuesConfig) 716 in.DeepCopyInto(out) 717 return out 718 } 719 720 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 721 func (in *JxInstallProfile) DeepCopyInto(out *JxInstallProfile) { 722 *out = *in 723 return 724 } 725 726 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new JxInstallProfile. 727 func (in *JxInstallProfile) DeepCopy() *JxInstallProfile { 728 if in == nil { 729 return nil 730 } 731 out := new(JxInstallProfile) 732 in.DeepCopyInto(out) 733 return out 734 } 735 736 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 737 func (in *KanikoSecret) DeepCopyInto(out *KanikoSecret) { 738 *out = *in 739 return 740 } 741 742 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KanikoSecret. 743 func (in *KanikoSecret) DeepCopy() *KanikoSecret { 744 if in == nil { 745 return nil 746 } 747 out := new(KanikoSecret) 748 in.DeepCopyInto(out) 749 return out 750 } 751 752 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 753 func (in *Nexus) DeepCopyInto(out *Nexus) { 754 *out = *in 755 return 756 } 757 758 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Nexus. 759 func (in *Nexus) DeepCopy() *Nexus { 760 if in == nil { 761 return nil 762 } 763 out := new(Nexus) 764 in.DeepCopyInto(out) 765 return out 766 } 767 768 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 769 func (in *PipelineSecrets) DeepCopyInto(out *PipelineSecrets) { 770 *out = *in 771 return 772 } 773 774 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PipelineSecrets. 775 func (in *PipelineSecrets) DeepCopy() *PipelineSecrets { 776 if in == nil { 777 return nil 778 } 779 out := new(PipelineSecrets) 780 in.DeepCopyInto(out) 781 return out 782 } 783 784 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 785 func (in *Preview) DeepCopyInto(out *Preview) { 786 *out = *in 787 if in.Image != nil { 788 in, out := &in.Image, &out.Image 789 *out = new(Image) 790 **out = **in 791 } 792 return 793 } 794 795 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Preview. 796 func (in *Preview) DeepCopy() *Preview { 797 if in == nil { 798 return nil 799 } 800 out := new(Preview) 801 in.DeepCopyInto(out) 802 return out 803 } 804 805 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 806 func (in *PreviewEnvironmentConfig) DeepCopyInto(out *PreviewEnvironmentConfig) { 807 *out = *in 808 return 809 } 810 811 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PreviewEnvironmentConfig. 812 func (in *PreviewEnvironmentConfig) DeepCopy() *PreviewEnvironmentConfig { 813 if in == nil { 814 return nil 815 } 816 out := new(PreviewEnvironmentConfig) 817 in.DeepCopyInto(out) 818 return out 819 } 820 821 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 822 func (in *PreviewValuesConfig) DeepCopyInto(out *PreviewValuesConfig) { 823 *out = *in 824 if in.ExposeController != nil { 825 in, out := &in.ExposeController, &out.ExposeController 826 *out = new(ExposeController) 827 (*in).DeepCopyInto(*out) 828 } 829 if in.Preview != nil { 830 in, out := &in.Preview, &out.Preview 831 *out = new(Preview) 832 (*in).DeepCopyInto(*out) 833 } 834 return 835 } 836 837 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PreviewValuesConfig. 838 func (in *PreviewValuesConfig) DeepCopy() *PreviewValuesConfig { 839 if in == nil { 840 return nil 841 } 842 out := new(PreviewValuesConfig) 843 in.DeepCopyInto(out) 844 return out 845 } 846 847 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 848 func (in *ProjectConfig) DeepCopyInto(out *ProjectConfig) { 849 *out = *in 850 if in.Env != nil { 851 in, out := &in.Env, &out.Env 852 *out = make([]v1.EnvVar, len(*in)) 853 for i := range *in { 854 (*in)[i].DeepCopyInto(&(*out)[i]) 855 } 856 } 857 if in.PreviewEnvironments != nil { 858 in, out := &in.PreviewEnvironments, &out.PreviewEnvironments 859 *out = new(PreviewEnvironmentConfig) 860 **out = **in 861 } 862 if in.IssueTracker != nil { 863 in, out := &in.IssueTracker, &out.IssueTracker 864 *out = new(IssueTrackerConfig) 865 **out = **in 866 } 867 if in.Chat != nil { 868 in, out := &in.Chat, &out.Chat 869 *out = new(ChatConfig) 870 **out = **in 871 } 872 if in.Wiki != nil { 873 in, out := &in.Wiki, &out.Wiki 874 *out = new(WikiConfig) 875 **out = **in 876 } 877 if in.Addons != nil { 878 in, out := &in.Addons, &out.Addons 879 *out = make([]*AddonConfig, len(*in)) 880 for i := range *in { 881 if (*in)[i] != nil { 882 in, out := &(*in)[i], &(*out)[i] 883 *out = new(AddonConfig) 884 **out = **in 885 } 886 } 887 } 888 if in.PipelineConfig != nil { 889 in, out := &in.PipelineConfig, &out.PipelineConfig 890 *out = new(jenkinsfile.PipelineConfig) 891 (*in).DeepCopyInto(*out) 892 } 893 return 894 } 895 896 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProjectConfig. 897 func (in *ProjectConfig) DeepCopy() *ProjectConfig { 898 if in == nil { 899 return nil 900 } 901 out := new(ProjectConfig) 902 in.DeepCopyInto(out) 903 return out 904 } 905 906 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 907 func (in *ProwValuesConfig) DeepCopyInto(out *ProwValuesConfig) { 908 *out = *in 909 return 910 } 911 912 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProwValuesConfig. 913 func (in *ProwValuesConfig) DeepCopy() *ProwValuesConfig { 914 if in == nil { 915 return nil 916 } 917 out := new(ProwValuesConfig) 918 in.DeepCopyInto(out) 919 return out 920 } 921 922 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 923 func (in *RequirementsConfig) DeepCopyInto(out *RequirementsConfig) { 924 *out = *in 925 out.AutoUpdate = in.AutoUpdate 926 out.BuildPacks = in.BuildPacks 927 in.Cluster.DeepCopyInto(&out.Cluster) 928 if in.Environments != nil { 929 in, out := &in.Environments, &out.Environments 930 *out = make([]EnvironmentConfig, len(*in)) 931 copy(*out, *in) 932 } 933 if in.GithubApp != nil { 934 in, out := &in.GithubApp, &out.GithubApp 935 *out = new(GithubAppConfig) 936 **out = **in 937 } 938 out.Ingress = in.Ingress 939 out.Storage = in.Storage 940 in.Vault.DeepCopyInto(&out.Vault) 941 out.Velero = in.Velero 942 out.VersionStream = in.VersionStream 943 return 944 } 945 946 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RequirementsConfig. 947 func (in *RequirementsConfig) DeepCopy() *RequirementsConfig { 948 if in == nil { 949 return nil 950 } 951 out := new(RequirementsConfig) 952 in.DeepCopyInto(out) 953 return out 954 } 955 956 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 957 func (in *RequirementsValues) DeepCopyInto(out *RequirementsValues) { 958 *out = *in 959 if in.RequirementsConfig != nil { 960 in, out := &in.RequirementsConfig, &out.RequirementsConfig 961 *out = new(RequirementsConfig) 962 (*in).DeepCopyInto(*out) 963 } 964 return 965 } 966 967 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RequirementsValues. 968 func (in *RequirementsValues) DeepCopy() *RequirementsValues { 969 if in == nil { 970 return nil 971 } 972 out := new(RequirementsValues) 973 in.DeepCopyInto(out) 974 return out 975 } 976 977 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 978 func (in *StorageConfig) DeepCopyInto(out *StorageConfig) { 979 *out = *in 980 out.Logs = in.Logs 981 out.Reports = in.Reports 982 out.Repository = in.Repository 983 out.Backup = in.Backup 984 return 985 } 986 987 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StorageConfig. 988 func (in *StorageConfig) DeepCopy() *StorageConfig { 989 if in == nil { 990 return nil 991 } 992 out := new(StorageConfig) 993 in.DeepCopyInto(out) 994 return out 995 } 996 997 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 998 func (in *StorageEntryConfig) DeepCopyInto(out *StorageEntryConfig) { 999 *out = *in 1000 return 1001 } 1002 1003 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StorageEntryConfig. 1004 func (in *StorageEntryConfig) DeepCopy() *StorageEntryConfig { 1005 if in == nil { 1006 return nil 1007 } 1008 out := new(StorageEntryConfig) 1009 in.DeepCopyInto(out) 1010 return out 1011 } 1012 1013 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 1014 func (in *TLSConfig) DeepCopyInto(out *TLSConfig) { 1015 *out = *in 1016 return 1017 } 1018 1019 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TLSConfig. 1020 func (in *TLSConfig) DeepCopy() *TLSConfig { 1021 if in == nil { 1022 return nil 1023 } 1024 out := new(TLSConfig) 1025 in.DeepCopyInto(out) 1026 return out 1027 } 1028 1029 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 1030 func (in *VaultAWSConfig) DeepCopyInto(out *VaultAWSConfig) { 1031 *out = *in 1032 out.VaultAWSUnsealConfig = in.VaultAWSUnsealConfig 1033 return 1034 } 1035 1036 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultAWSConfig. 1037 func (in *VaultAWSConfig) DeepCopy() *VaultAWSConfig { 1038 if in == nil { 1039 return nil 1040 } 1041 out := new(VaultAWSConfig) 1042 in.DeepCopyInto(out) 1043 return out 1044 } 1045 1046 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 1047 func (in *VaultAWSUnsealConfig) DeepCopyInto(out *VaultAWSUnsealConfig) { 1048 *out = *in 1049 return 1050 } 1051 1052 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultAWSUnsealConfig. 1053 func (in *VaultAWSUnsealConfig) DeepCopy() *VaultAWSUnsealConfig { 1054 if in == nil { 1055 return nil 1056 } 1057 out := new(VaultAWSUnsealConfig) 1058 in.DeepCopyInto(out) 1059 return out 1060 } 1061 1062 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 1063 func (in *VaultConfig) DeepCopyInto(out *VaultConfig) { 1064 *out = *in 1065 if in.AWSConfig != nil { 1066 in, out := &in.AWSConfig, &out.AWSConfig 1067 *out = new(VaultAWSConfig) 1068 **out = **in 1069 } 1070 return 1071 } 1072 1073 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VaultConfig. 1074 func (in *VaultConfig) DeepCopy() *VaultConfig { 1075 if in == nil { 1076 return nil 1077 } 1078 out := new(VaultConfig) 1079 in.DeepCopyInto(out) 1080 return out 1081 } 1082 1083 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 1084 func (in *VeleroConfig) DeepCopyInto(out *VeleroConfig) { 1085 *out = *in 1086 return 1087 } 1088 1089 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VeleroConfig. 1090 func (in *VeleroConfig) DeepCopy() *VeleroConfig { 1091 if in == nil { 1092 return nil 1093 } 1094 out := new(VeleroConfig) 1095 in.DeepCopyInto(out) 1096 return out 1097 } 1098 1099 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 1100 func (in *VersionStreamConfig) DeepCopyInto(out *VersionStreamConfig) { 1101 *out = *in 1102 return 1103 } 1104 1105 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VersionStreamConfig. 1106 func (in *VersionStreamConfig) DeepCopy() *VersionStreamConfig { 1107 if in == nil { 1108 return nil 1109 } 1110 out := new(VersionStreamConfig) 1111 in.DeepCopyInto(out) 1112 return out 1113 } 1114 1115 // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil. 1116 func (in *WikiConfig) DeepCopyInto(out *WikiConfig) { 1117 *out = *in 1118 return 1119 } 1120 1121 // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new WikiConfig. 1122 func (in *WikiConfig) DeepCopy() *WikiConfig { 1123 if in == nil { 1124 return nil 1125 } 1126 out := new(WikiConfig) 1127 in.DeepCopyInto(out) 1128 return out 1129 }