@@ -523,6 +523,7 @@ type CustomBuildStrategy struct {
523
523
PullSecret * kapi.LocalObjectReference
524
524
525
525
// Env contains additional environment variables you want to pass into a builder container
526
+ // ValueFrom is not supported.
526
527
Env []kapi.EnvVar
527
528
528
529
// ExposeDockerSocket will allow running Docker commands (and build Docker images) from
@@ -557,7 +558,8 @@ type DockerBuildStrategy struct {
557
558
// --no-cache=true flag
558
559
NoCache bool
559
560
560
- // Env contains additional environment variables you want to pass into a builder container
561
+ // Env contains additional environment variables you want to pass into a builder container.
562
+ // ValueFrom is not supported.
561
563
Env []kapi.EnvVar
562
564
563
565
// ForcePull describes if the builder should pull the images from registry prior to building.
@@ -579,7 +581,8 @@ type SourceBuildStrategy struct {
579
581
// registries
580
582
PullSecret * kapi.LocalObjectReference
581
583
582
- // Env contains additional environment variables you want to pass into a builder container
584
+ // Env contains additional environment variables you want to pass into a builder container.
585
+ // ValueFrom is not supported.
583
586
Env []kapi.EnvVar
584
587
585
588
// Scripts is the location of Source scripts
@@ -616,6 +619,10 @@ type JenkinsPipelineBuildStrategy struct {
616
619
617
620
// Jenkinsfile defines the optional raw contents of a Jenkinsfile which defines a Jenkins pipeline build.
618
621
Jenkinsfile string
622
+
623
+ // Env contains additional environment variables you want to pass into a build pipeline.
624
+ // ValueFrom is not supported.
625
+ Env []kapi.EnvVar
619
626
}
620
627
621
628
// A BuildPostCommitSpec holds a build post commit hook specification. The hook
@@ -881,7 +888,8 @@ type GenericWebHookEvent struct {
881
888
// Git is the git information, if any.
882
889
Git * GitInfo
883
890
884
- // Env contains additional environment variables you want to pass into a builder container
891
+ // Env contains additional environment variables you want to pass into a builder container.
892
+ // ValueFrom is not supported.
885
893
Env []kapi.EnvVar
886
894
}
887
895
@@ -933,6 +941,7 @@ type BuildRequest struct {
933
941
LastVersion * int64
934
942
935
943
// Env contains additional environment variables you want to pass into a builder container.
944
+ // ValueFrom is not supported.
936
945
Env []kapi.EnvVar
937
946
938
947
// TriggeredBy describes which triggers started the most recent update to the
0 commit comments