1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022
|
// This file was autogenerated by go-to-protobuf. Do not edit it manually!
syntax = 'proto2';
package github.com.openshift.api.build.v1;
import "k8s.io/api/core/v1/generated.proto";
import "k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto";
import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto";
// Package-wide variables from generator "generated".
option go_package = "v1";
// BinaryBuildRequestOptions are the options required to fully speficy a binary build request
message BinaryBuildRequestOptions {
// metadata for BinaryBuildRequestOptions.
optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
// asFile determines if the binary should be created as a file within the source rather than extracted as an archive
optional string asFile = 2;
// revision.commit is the value identifying a specific commit
optional string revisionCommit = 3;
// revision.message is the description of a specific commit
optional string revisionMessage = 4;
// revision.authorName of the source control user
optional string revisionAuthorName = 5;
// revision.authorEmail of the source control user
optional string revisionAuthorEmail = 6;
// revision.committerName of the source control user
optional string revisionCommitterName = 7;
// revision.committerEmail of the source control user
optional string revisionCommitterEmail = 8;
}
// BinaryBuildSource describes a binary file to be used for the Docker and Source build strategies,
// where the file will be extracted and used as the build source.
message BinaryBuildSource {
// asFile indicates that the provided binary input should be considered a single file
// within the build input. For example, specifying "webapp.war" would place the provided
// binary as `/webapp.war` for the builder. If left empty, the Docker and Source build
// strategies assume this file is a zip, tar, or tar.gz file and extract it as the source.
// The custom strategy receives this binary as standard input. This filename may not
// contain slashes or be '..' or '.'.
optional string asFile = 1;
}
// BitbucketWebHookCause has information about a Bitbucket webhook that triggered a
// build.
message BitbucketWebHookCause {
optional CommonWebHookCause commonSpec = 1;
}
// Build encapsulates the inputs needed to produce a new deployable image, as well as
// the status of the execution and a reference to the Pod which executed the build.
message Build {
// Standard object's metadata.
optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
// spec is all the inputs used to execute the build.
optional BuildSpec spec = 2;
// status is the current status of the build.
optional BuildStatus status = 3;
}
// Build configurations define a build process for new container images. There are three types of builds possible - a container image build using a Dockerfile, a Source-to-Image build that uses a specially prepared base image that accepts source code that it can make runnable, and a custom build that can run // arbitrary container images as a base and accept the build parameters. Builds run on the cluster and on completion are pushed to the container image registry specified in the "output" section. A build can be triggered via a webhook, when the base image changes, or when a user manually requests a new build be // created.
//
// Each build created by a build configuration is numbered and refers back to its parent configuration. Multiple builds can be triggered at once. Builds that do not have "output" set can be used to test code or run a verification build.
message BuildConfig {
// metadata for BuildConfig.
optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
// spec holds all the input necessary to produce a new build, and the conditions when
// to trigger them.
optional BuildConfigSpec spec = 2;
// status holds any relevant information about a build config
optional BuildConfigStatus status = 3;
}
// BuildConfigList is a collection of BuildConfigs.
message BuildConfigList {
// metadata for BuildConfigList.
optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
// items is a list of build configs
repeated BuildConfig items = 2;
}
// BuildConfigSpec describes when and how builds are created
message BuildConfigSpec {
// triggers determine how new Builds can be launched from a BuildConfig. If
// no triggers are defined, a new build can only occur as a result of an
// explicit client build creation.
repeated BuildTriggerPolicy triggers = 1;
// RunPolicy describes how the new build created from this build
// configuration will be scheduled for execution.
// This is optional, if not specified we default to "Serial".
optional string runPolicy = 2;
// CommonSpec is the desired build specification
optional CommonSpec commonSpec = 3;
// successfulBuildsHistoryLimit is the number of old successful builds to retain.
// When a BuildConfig is created, the 5 most recent successful builds are retained unless this value is set.
// If removed after the BuildConfig has been created, all successful builds are retained.
optional int32 successfulBuildsHistoryLimit = 4;
// failedBuildsHistoryLimit is the number of old failed builds to retain.
// When a BuildConfig is created, the 5 most recent failed builds are retained unless this value is set.
// If removed after the BuildConfig has been created, all failed builds are retained.
optional int32 failedBuildsHistoryLimit = 5;
}
// BuildConfigStatus contains current state of the build config object.
message BuildConfigStatus {
// lastVersion is used to inform about number of last triggered build.
optional int64 lastVersion = 1;
}
// BuildList is a collection of Builds.
message BuildList {
// metadata for BuildList.
optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
// items is a list of builds
repeated Build items = 2;
}
// BuildLog is the (unused) resource associated with the build log redirector
message BuildLog {
}
// BuildLogOptions is the REST options for a build log
message BuildLogOptions {
// cointainer for which to stream logs. Defaults to only container if there is one container in the pod.
optional string container = 1;
// follow if true indicates that the build log should be streamed until
// the build terminates.
optional bool follow = 2;
// previous returns previous build logs. Defaults to false.
optional bool previous = 3;
// sinceSeconds is a relative time in seconds before the current time from which to show logs. If this value
// precedes the time a pod was started, only logs since the pod start will be returned.
// If this value is in the future, no logs will be returned.
// Only one of sinceSeconds or sinceTime may be specified.
optional int64 sinceSeconds = 4;
// sinceTime is an RFC3339 timestamp from which to show logs. If this value
// precedes the time a pod was started, only logs since the pod start will be returned.
// If this value is in the future, no logs will be returned.
// Only one of sinceSeconds or sinceTime may be specified.
optional k8s.io.apimachinery.pkg.apis.meta.v1.Time sinceTime = 5;
// timestamps, If true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line
// of log output. Defaults to false.
optional bool timestamps = 6;
// tailLines, If set, is the number of lines from the end of the logs to show. If not specified,
// logs are shown from the creation of the container or sinceSeconds or sinceTime
optional int64 tailLines = 7;
// limitBytes, If set, is the number of bytes to read from the server before terminating the
// log output. This may not display a complete final line of logging, and may return
// slightly more or slightly less than the specified limit.
optional int64 limitBytes = 8;
// noWait if true causes the call to return immediately even if the build
// is not available yet. Otherwise the server will wait until the build has started.
// TODO: Fix the tag to 'noWait' in v2
optional bool nowait = 9;
// version of the build for which to view logs.
optional int64 version = 10;
}
// BuildOutput is input to a build strategy and describes the container image that the strategy
// should produce.
message BuildOutput {
// to defines an optional location to push the output of this build to.
// Kind must be one of 'ImageStreamTag' or 'DockerImage'.
// This value will be used to look up a container image repository to push to.
// In the case of an ImageStreamTag, the ImageStreamTag will be looked for in the namespace of
// the build unless Namespace is specified.
optional k8s.io.api.core.v1.ObjectReference to = 1;
// PushSecret is the name of a Secret that would be used for setting
// up the authentication for executing the Docker push to authentication
// enabled Docker Registry (or Docker Hub).
optional k8s.io.api.core.v1.LocalObjectReference pushSecret = 2;
// imageLabels define a list of labels that are applied to the resulting image. If there
// are multiple labels with the same name then the last one in the list is used.
repeated ImageLabel imageLabels = 3;
}
// A BuildPostCommitSpec holds a build post commit hook specification. The hook
// executes a command in a temporary container running the build output image,
// immediately after the last layer of the image is committed and before the
// image is pushed to a registry. The command is executed with the current
// working directory ($PWD) set to the image's WORKDIR.
//
// The build will be marked as failed if the hook execution fails. It will fail
// if the script or command return a non-zero exit code, or if there is any
// other error related to starting the temporary container.
//
// There are five different ways to configure the hook. As an example, all forms
// below are equivalent and will execute `rake test --verbose`.
//
// 1. Shell script:
//
// "postCommit": {
// "script": "rake test --verbose",
// }
//
// The above is a convenient form which is equivalent to:
//
// "postCommit": {
// "command": ["/bin/sh", "-ic"],
// "args": ["rake test --verbose"]
// }
//
// 2. A command as the image entrypoint:
//
// "postCommit": {
// "commit": ["rake", "test", "--verbose"]
// }
//
// Command overrides the image entrypoint in the exec form, as documented in
// Docker: https://docs.docker.com/engine/reference/builder/#entrypoint.
//
// 3. Pass arguments to the default entrypoint:
//
// "postCommit": {
// "args": ["rake", "test", "--verbose"]
// }
//
// This form is only useful if the image entrypoint can handle arguments.
//
// 4. Shell script with arguments:
//
// "postCommit": {
// "script": "rake test $1",
// "args": ["--verbose"]
// }
//
// This form is useful if you need to pass arguments that would otherwise be
// hard to quote properly in the shell script. In the script, $0 will be
// "/bin/sh" and $1, $2, etc, are the positional arguments from Args.
//
// 5. Command with arguments:
//
// "postCommit": {
// "command": ["rake", "test"],
// "args": ["--verbose"]
// }
//
// This form is equivalent to appending the arguments to the Command slice.
//
// It is invalid to provide both Script and Command simultaneously. If none of
// the fields are specified, the hook is not executed.
message BuildPostCommitSpec {
// command is the command to run. It may not be specified with Script.
// This might be needed if the image doesn't have `/bin/sh`, or if you
// do not want to use a shell. In all other cases, using Script might be
// more convenient.
repeated string command = 1;
// args is a list of arguments that are provided to either Command,
// Script or the container image's default entrypoint. The arguments are
// placed immediately after the command to be run.
repeated string args = 2;
// script is a shell script to be run with `/bin/sh -ic`. It may not be
// specified with Command. Use Script when a shell script is appropriate
// to execute the post build hook, for example for running unit tests
// with `rake test`. If you need control over the image entrypoint, or
// if the image does not have `/bin/sh`, use Command and/or Args.
// The `-i` flag is needed to support CentOS and RHEL images that use
// Software Collections (SCL), in order to have the appropriate
// collections enabled in the shell. E.g., in the Ruby image, this is
// necessary to make `ruby`, `bundle` and other binaries available in
// the PATH.
optional string script = 3;
}
// BuildRequest is the resource used to pass parameters to build generator
message BuildRequest {
// metadata for BuildRequest.
optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
// revision is the information from the source for a specific repo snapshot.
optional SourceRevision revision = 2;
// triggeredByImage is the Image that triggered this build.
optional k8s.io.api.core.v1.ObjectReference triggeredByImage = 3;
// from is the reference to the ImageStreamTag that triggered the build.
optional k8s.io.api.core.v1.ObjectReference from = 4;
// binary indicates a request to build from a binary provided to the builder
optional BinaryBuildSource binary = 5;
// lastVersion (optional) is the LastVersion of the BuildConfig that was used
// to generate the build. If the BuildConfig in the generator doesn't match, a build will
// not be generated.
optional int64 lastVersion = 6;
// env contains additional environment variables you want to pass into a builder container.
repeated k8s.io.api.core.v1.EnvVar env = 7;
// triggeredBy describes which triggers started the most recent update to the
// build configuration and contains information about those triggers.
repeated BuildTriggerCause triggeredBy = 8;
// DockerStrategyOptions contains additional docker-strategy specific options for the build
optional DockerStrategyOptions dockerStrategyOptions = 9;
// SourceStrategyOptions contains additional source-strategy specific options for the build
optional SourceStrategyOptions sourceStrategyOptions = 10;
}
// BuildSource is the SCM used for the build.
message BuildSource {
// type of build input to accept
// +k8s:conversion-gen=false
optional string type = 1;
// binary builds accept a binary as their input. The binary is generally assumed to be a tar,
// gzipped tar, or zip file depending on the strategy. For container image builds, this is the build
// context and an optional Dockerfile may be specified to override any Dockerfile in the
// build context. For Source builds, this is assumed to be an archive as described above. For
// Source and container image builds, if binary.asFile is set the build will receive a directory with
// a single file. contextDir may be used when an archive is provided. Custom builds will
// receive this binary as input on STDIN.
optional BinaryBuildSource binary = 2;
// dockerfile is the raw contents of a Dockerfile which should be built. When this option is
// specified, the FROM may be modified based on your strategy base image and additional ENV
// stanzas from your strategy environment will be added after the FROM, but before the rest
// of your Dockerfile stanzas. The Dockerfile source type may be used with other options like
// git - in those cases the Git repo will have any innate Dockerfile replaced in the context
// dir.
optional string dockerfile = 3;
// git contains optional information about git build source
optional GitBuildSource git = 4;
// images describes a set of images to be used to provide source for the build
repeated ImageSource images = 5;
// contextDir specifies the sub-directory where the source code for the application exists.
// This allows to have buildable sources in directory other than root of
// repository.
optional string contextDir = 6;
// sourceSecret is the name of a Secret that would be used for setting
// up the authentication for cloning private repository.
// The secret contains valid credentials for remote repository, where the
// data's key represent the authentication method to be used and value is
// the base64 encoded credentials. Supported auth methods are: ssh-privatekey.
optional k8s.io.api.core.v1.LocalObjectReference sourceSecret = 7;
// secrets represents a list of secrets and their destinations that will
// be used only for the build.
repeated SecretBuildSource secrets = 8;
// configMaps represents a list of configMaps and their destinations that will
// be used for the build.
repeated ConfigMapBuildSource configMaps = 9;
}
// BuildSpec has the information to represent a build and also additional
// information about a build
message BuildSpec {
// CommonSpec is the information that represents a build
optional CommonSpec commonSpec = 1;
// triggeredBy describes which triggers started the most recent update to the
// build configuration and contains information about those triggers.
repeated BuildTriggerCause triggeredBy = 2;
}
// BuildStatus contains the status of a build
message BuildStatus {
// phase is the point in the build lifecycle. Possible values are
// "New", "Pending", "Running", "Complete", "Failed", "Error", and "Cancelled".
optional string phase = 1;
// cancelled describes if a cancel event was triggered for the build.
optional bool cancelled = 2;
// reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI.
optional string reason = 3;
// message is a human-readable message indicating details about why the build has this status.
optional string message = 4;
// startTimestamp is a timestamp representing the server time when this Build started
// running in a Pod.
// It is represented in RFC3339 form and is in UTC.
optional k8s.io.apimachinery.pkg.apis.meta.v1.Time startTimestamp = 5;
// completionTimestamp is a timestamp representing the server time when this Build was
// finished, whether that build failed or succeeded. It reflects the time at which
// the Pod running the Build terminated.
// It is represented in RFC3339 form and is in UTC.
optional k8s.io.apimachinery.pkg.apis.meta.v1.Time completionTimestamp = 6;
// duration contains time.Duration object describing build time.
optional int64 duration = 7;
// outputDockerImageReference contains a reference to the container image that
// will be built by this build. Its value is computed from
// Build.Spec.Output.To, and should include the registry address, so that
// it can be used to push and pull the image.
optional string outputDockerImageReference = 8;
// config is an ObjectReference to the BuildConfig this Build is based on.
optional k8s.io.api.core.v1.ObjectReference config = 9;
// output describes the container image the build has produced.
optional BuildStatusOutput output = 10;
// stages contains details about each stage that occurs during the build
// including start time, duration (in milliseconds), and the steps that
// occured within each stage.
repeated StageInfo stages = 11;
// logSnippet is the last few lines of the build log. This value is only set for builds that failed.
optional string logSnippet = 12;
}
// BuildStatusOutput contains the status of the built image.
message BuildStatusOutput {
// to describes the status of the built image being pushed to a registry.
optional BuildStatusOutputTo to = 1;
}
// BuildStatusOutputTo describes the status of the built image with regards to
// image registry to which it was supposed to be pushed.
message BuildStatusOutputTo {
// imageDigest is the digest of the built container image. The digest uniquely
// identifies the image in the registry to which it was pushed.
//
// Please note that this field may not always be set even if the push
// completes successfully - e.g. when the registry returns no digest or
// returns it in a format that the builder doesn't understand.
optional string imageDigest = 1;
}
// BuildStrategy contains the details of how to perform a build.
message BuildStrategy {
// type is the kind of build strategy.
// +k8s:conversion-gen=false
optional string type = 1;
// dockerStrategy holds the parameters to the container image build strategy.
optional DockerBuildStrategy dockerStrategy = 2;
// sourceStrategy holds the parameters to the Source build strategy.
optional SourceBuildStrategy sourceStrategy = 3;
// customStrategy holds the parameters to the Custom build strategy
optional CustomBuildStrategy customStrategy = 4;
// JenkinsPipelineStrategy holds the parameters to the Jenkins Pipeline build strategy.
optional JenkinsPipelineBuildStrategy jenkinsPipelineStrategy = 5;
}
// BuildTriggerCause holds information about a triggered build. It is used for
// displaying build trigger data for each build and build configuration in oc
// describe. It is also used to describe which triggers led to the most recent
// update in the build configuration.
message BuildTriggerCause {
// message is used to store a human readable message for why the build was
// triggered. E.g.: "Manually triggered by user", "Configuration change",etc.
optional string message = 1;
// genericWebHook holds data about a builds generic webhook trigger.
optional GenericWebHookCause genericWebHook = 2;
// gitHubWebHook represents data for a GitHub webhook that fired a
// specific build.
optional GitHubWebHookCause githubWebHook = 3;
// imageChangeBuild stores information about an imagechange event
// that triggered a new build.
optional ImageChangeCause imageChangeBuild = 4;
// GitLabWebHook represents data for a GitLab webhook that fired a specific
// build.
optional GitLabWebHookCause gitlabWebHook = 5;
// BitbucketWebHook represents data for a Bitbucket webhook that fired a
// specific build.
optional BitbucketWebHookCause bitbucketWebHook = 6;
}
// BuildTriggerPolicy describes a policy for a single trigger that results in a new Build.
message BuildTriggerPolicy {
// type is the type of build trigger
optional string type = 1;
// github contains the parameters for a GitHub webhook type of trigger
optional WebHookTrigger github = 2;
// generic contains the parameters for a Generic webhook type of trigger
optional WebHookTrigger generic = 3;
// imageChange contains parameters for an ImageChange type of trigger
optional ImageChangeTrigger imageChange = 4;
// GitLabWebHook contains the parameters for a GitLab webhook type of trigger
optional WebHookTrigger gitlab = 5;
// BitbucketWebHook contains the parameters for a Bitbucket webhook type of
// trigger
optional WebHookTrigger bitbucket = 6;
}
// CommonSpec encapsulates all the inputs necessary to represent a build.
message CommonSpec {
// serviceAccount is the name of the ServiceAccount to use to run the pod
// created by this build.
// The pod will be allowed to use secrets referenced by the ServiceAccount
optional string serviceAccount = 1;
// source describes the SCM in use.
optional BuildSource source = 2;
// revision is the information from the source for a specific repo snapshot.
// This is optional.
optional SourceRevision revision = 3;
// strategy defines how to perform a build.
optional BuildStrategy strategy = 4;
// output describes the container image the Strategy should produce.
optional BuildOutput output = 5;
// resources computes resource requirements to execute the build.
optional k8s.io.api.core.v1.ResourceRequirements resources = 6;
// postCommit is a build hook executed after the build output image is
// committed, before it is pushed to a registry.
optional BuildPostCommitSpec postCommit = 7;
// 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
optional int64 completionDeadlineSeconds = 8;
// nodeSelector is a selector which must be true for the build pod to fit on a node
// If nil, it can be overridden by default build nodeselector values for the cluster.
// If set to an empty map or a map with any values, default build nodeselector values
// are ignored.
optional OptionalNodeSelector nodeSelector = 9;
}
// CommonWebHookCause factors out the identical format of these webhook
// causes into struct so we can share it in the specific causes; it is too late for
// GitHub and Generic but we can leverage this pattern with GitLab and Bitbucket.
message CommonWebHookCause {
// Revision is the git source revision information of the trigger.
optional SourceRevision revision = 1;
// Secret is the obfuscated webhook secret that triggered a build.
optional string secret = 2;
}
// ConfigMapBuildSource describes a configmap and its destination directory that will be
// used only at the build time. The content of the configmap referenced here will
// be copied into the destination directory instead of mounting.
message ConfigMapBuildSource {
// configMap is a reference to an existing configmap that you want to use in your
// build.
optional k8s.io.api.core.v1.LocalObjectReference configMap = 1;
// destinationDir is the directory where the files from the configmap should be
// available for the build time.
// For the Source build strategy, these will be injected into a container
// where the assemble script runs.
// For the container image build strategy, these will be copied into the build
// directory, where the Dockerfile is located, so users can ADD or COPY them
// during container image build.
optional string destinationDir = 2;
}
// CustomBuildStrategy defines input parameters specific to Custom build.
message CustomBuildStrategy {
// from is reference to an DockerImage, ImageStreamTag, or ImageStreamImage from which
// the container image should be pulled
optional k8s.io.api.core.v1.ObjectReference from = 1;
// pullSecret is the name of a Secret that would be used for setting up
// the authentication for pulling the container images from the private Docker
// registries
optional k8s.io.api.core.v1.LocalObjectReference pullSecret = 2;
// env contains additional environment variables you want to pass into a builder container.
repeated k8s.io.api.core.v1.EnvVar env = 3;
// exposeDockerSocket will allow running Docker commands (and build container images) from
// inside the container.
// TODO: Allow admins to enforce 'false' for this option
optional bool exposeDockerSocket = 4;
// forcePull describes if the controller should configure the build pod to always pull the images
// for the builder or only pull if it is not present locally
optional bool forcePull = 5;
// secrets is a list of additional secrets that will be included in the build pod
repeated SecretSpec secrets = 6;
// buildAPIVersion is the requested API version for the Build object serialized and passed to the custom builder
optional string buildAPIVersion = 7;
}
// DockerBuildStrategy defines input parameters specific to container image build.
message DockerBuildStrategy {
// from is reference to an DockerImage, ImageStreamTag, or ImageStreamImage from which
// the container image should be pulled
// the resulting image will be used in the FROM line of the Dockerfile for this build.
optional k8s.io.api.core.v1.ObjectReference from = 1;
// pullSecret is the name of a Secret that would be used for setting up
// the authentication for pulling the container images from the private Docker
// registries
optional k8s.io.api.core.v1.LocalObjectReference pullSecret = 2;
// noCache if set to true indicates that the container image build must be executed with the
// --no-cache=true flag
optional bool noCache = 3;
// env contains additional environment variables you want to pass into a builder container.
repeated k8s.io.api.core.v1.EnvVar env = 4;
// forcePull describes if the builder should pull the images from registry prior to building.
optional bool forcePull = 5;
// dockerfilePath is the path of the Dockerfile that will be used to build the container image,
// relative to the root of the context (contextDir).
optional string dockerfilePath = 6;
// buildArgs contains build arguments that will be resolved in the Dockerfile. See
// https://docs.docker.com/engine/reference/builder/#/arg for more details.
repeated k8s.io.api.core.v1.EnvVar buildArgs = 7;
// imageOptimizationPolicy describes what optimizations the system can use when building images
// to reduce the final size or time spent building the image. The default policy is 'None' which
// means the final build image will be equivalent to an image created by the container image build API.
// The experimental policy 'SkipLayers' will avoid commiting new layers in between each
// image step, and will fail if the Dockerfile cannot provide compatibility with the 'None'
// policy. An additional experimental policy 'SkipLayersAndWarn' is the same as
// 'SkipLayers' but simply warns if compatibility cannot be preserved.
optional string imageOptimizationPolicy = 8;
}
// DockerStrategyOptions contains extra strategy options for container image builds
message DockerStrategyOptions {
// Args contains any build arguments that are to be passed to Docker. See
// https://docs.docker.com/engine/reference/builder/#/arg for more details
repeated k8s.io.api.core.v1.EnvVar buildArgs = 1;
// noCache overrides the docker-strategy noCache option in the build config
optional bool noCache = 2;
}
// GenericWebHookCause holds information about a generic WebHook that
// triggered a build.
message GenericWebHookCause {
// revision is an optional field that stores the git source revision
// information of the generic webhook trigger when it is available.
optional SourceRevision revision = 1;
// secret is the obfuscated webhook secret that triggered a build.
optional string secret = 2;
}
// GenericWebHookEvent is the payload expected for a generic webhook post
message GenericWebHookEvent {
// type is the type of source repository
// +k8s:conversion-gen=false
optional string type = 1;
// git is the git information if the Type is BuildSourceGit
optional GitInfo git = 2;
// env contains additional environment variables you want to pass into a builder container.
// ValueFrom is not supported.
repeated k8s.io.api.core.v1.EnvVar env = 3;
// DockerStrategyOptions contains additional docker-strategy specific options for the build
optional DockerStrategyOptions dockerStrategyOptions = 4;
}
// GitBuildSource defines the parameters of a Git SCM
message GitBuildSource {
// uri points to the source that will be built. The structure of the source
// will depend on the type of build to run
optional string uri = 1;
// ref is the branch/tag/ref to build.
optional string ref = 2;
// proxyConfig defines the proxies to use for the git clone operation. Values
// not set here are inherited from cluster-wide build git proxy settings.
optional ProxyConfig proxyConfig = 3;
}
// GitHubWebHookCause has information about a GitHub webhook that triggered a
// build.
message GitHubWebHookCause {
// revision is the git revision information of the trigger.
optional SourceRevision revision = 1;
// secret is the obfuscated webhook secret that triggered a build.
optional string secret = 2;
}
// GitInfo is the aggregated git information for a generic webhook post
message GitInfo {
optional GitBuildSource gitBuildSource = 1;
optional GitSourceRevision gitSourceRevision = 2;
// Refs is a list of GitRefs for the provided repo - generally sent
// when used from a post-receive hook. This field is optional and is
// used when sending multiple refs
repeated GitRefInfo refs = 3;
}
// GitLabWebHookCause has information about a GitLab webhook that triggered a
// build.
message GitLabWebHookCause {
optional CommonWebHookCause commonSpec = 1;
}
// GitRefInfo is a single ref
message GitRefInfo {
optional GitBuildSource gitBuildSource = 1;
optional GitSourceRevision gitSourceRevision = 2;
}
// GitSourceRevision is the commit information from a git source for a build
message GitSourceRevision {
// commit is the commit hash identifying a specific commit
optional string commit = 1;
// author is the author of a specific commit
optional SourceControlUser author = 2;
// committer is the committer of a specific commit
optional SourceControlUser committer = 3;
// message is the description of a specific commit
optional string message = 4;
}
// ImageChangeCause contains information about the image that triggered a
// build
message ImageChangeCause {
// imageID is the ID of the image that triggered a a new build.
optional string imageID = 1;
// fromRef contains detailed information about an image that triggered a
// build.
optional k8s.io.api.core.v1.ObjectReference fromRef = 2;
}
// ImageChangeTrigger allows builds to be triggered when an ImageStream changes
message ImageChangeTrigger {
// lastTriggeredImageID is used internally by the ImageChangeController to save last
// used image ID for build
optional string lastTriggeredImageID = 1;
// from is a reference to an ImageStreamTag that will trigger a build when updated
// It is optional. If no From is specified, the From image from the build strategy
// will be used. Only one ImageChangeTrigger with an empty From reference is allowed in
// a build configuration.
optional k8s.io.api.core.v1.ObjectReference from = 2;
// paused is true if this trigger is temporarily disabled. Optional.
optional bool paused = 3;
}
// ImageLabel represents a label applied to the resulting image.
message ImageLabel {
// name defines the name of the label. It must have non-zero length.
optional string name = 1;
// value defines the literal value of the label.
optional string value = 2;
}
// ImageSource is used to describe build source that will be extracted from an image or used during a
// multi stage build. A reference of type ImageStreamTag, ImageStreamImage or DockerImage may be used.
// A pull secret can be specified to pull the image from an external registry or override the default
// service account secret if pulling from the internal registry. Image sources can either be used to
// extract content from an image and place it into the build context along with the repository source,
// or used directly during a multi-stage container image build to allow content to be copied without overwriting
// the contents of the repository source (see the 'paths' and 'as' fields).
message ImageSource {
// from is a reference to an ImageStreamTag, ImageStreamImage, or DockerImage to
// copy source from.
optional k8s.io.api.core.v1.ObjectReference from = 1;
// A list of image names that this source will be used in place of during a multi-stage container image
// build. For instance, a Dockerfile that uses "COPY --from=nginx:latest" will first check for an image
// source that has "nginx:latest" in this field before attempting to pull directly. If the Dockerfile
// does not reference an image source it is ignored. This field and paths may both be set, in which case
// the contents will be used twice.
// +optional
repeated string as = 4;
// paths is a list of source and destination paths to copy from the image. This content will be copied
// into the build context prior to starting the build. If no paths are set, the build context will
// not be altered.
// +optional
repeated ImageSourcePath paths = 2;
// pullSecret is a reference to a secret to be used to pull the image from a registry
// If the image is pulled from the OpenShift registry, this field does not need to be set.
optional k8s.io.api.core.v1.LocalObjectReference pullSecret = 3;
}
// ImageSourcePath describes a path to be copied from a source image and its destination within the build directory.
message ImageSourcePath {
// sourcePath is the absolute path of the file or directory inside the image to
// copy to the build directory. If the source path ends in /. then the content of
// the directory will be copied, but the directory itself will not be created at the
// destination.
optional string sourcePath = 1;
// destinationDir is the relative directory within the build directory
// where files copied from the image are placed.
optional string destinationDir = 2;
}
// JenkinsPipelineBuildStrategy holds parameters specific to a Jenkins Pipeline build.
message JenkinsPipelineBuildStrategy {
// JenkinsfilePath is the optional path of the Jenkinsfile that will be used to configure the pipeline
// relative to the root of the context (contextDir). If both JenkinsfilePath & Jenkinsfile are
// both not specified, this defaults to Jenkinsfile in the root of the specified contextDir.
optional string jenkinsfilePath = 1;
// Jenkinsfile defines the optional raw contents of a Jenkinsfile which defines a Jenkins pipeline build.
optional string jenkinsfile = 2;
// env contains additional environment variables you want to pass into a build pipeline.
repeated k8s.io.api.core.v1.EnvVar env = 3;
}
// OptionalNodeSelector is a map that may also be left nil to distinguish between set and unset.
// +protobuf.nullable=true
// +protobuf.options.(gogoproto.goproto_stringer)=false
message OptionalNodeSelector {
// items, if empty, will result in an empty map
map<string, string> items = 1;
}
// ProxyConfig defines what proxies to use for an operation
message ProxyConfig {
// httpProxy is a proxy used to reach the git repository over http
optional string httpProxy = 3;
// httpsProxy is a proxy used to reach the git repository over https
optional string httpsProxy = 4;
// noProxy is the list of domains for which the proxy should not be used
optional string noProxy = 5;
}
// SecretBuildSource describes a secret and its destination directory that will be
// used only at the build time. The content of the secret referenced here will
// be copied into the destination directory instead of mounting.
message SecretBuildSource {
// secret is a reference to an existing secret that you want to use in your
// build.
optional k8s.io.api.core.v1.LocalObjectReference secret = 1;
// destinationDir is the directory where the files from the secret should be
// available for the build time.
// For the Source build strategy, these will be injected into a container
// where the assemble script runs. Later, when the script finishes, all files
// injected will be truncated to zero length.
// For the container image build strategy, these will be copied into the build
// directory, where the Dockerfile is located, so users can ADD or COPY them
// during container image build.
optional string destinationDir = 2;
}
// SecretLocalReference contains information that points to the local secret being used
message SecretLocalReference {
// Name is the name of the resource in the same namespace being referenced
optional string name = 1;
}
// SecretSpec specifies a secret to be included in a build pod and its corresponding mount point
message SecretSpec {
// secretSource is a reference to the secret
optional k8s.io.api.core.v1.LocalObjectReference secretSource = 1;
// mountPath is the path at which to mount the secret
optional string mountPath = 2;
}
// SourceBuildStrategy defines input parameters specific to an Source build.
message SourceBuildStrategy {
// from is reference to an DockerImage, ImageStreamTag, or ImageStreamImage from which
// the container image should be pulled
optional k8s.io.api.core.v1.ObjectReference from = 1;
// pullSecret is the name of a Secret that would be used for setting up
// the authentication for pulling the container images from the private Docker
// registries
optional k8s.io.api.core.v1.LocalObjectReference pullSecret = 2;
// env contains additional environment variables you want to pass into a builder container.
repeated k8s.io.api.core.v1.EnvVar env = 3;
// scripts is the location of Source scripts
optional string scripts = 4;
// incremental flag forces the Source build to do incremental builds if true.
optional bool incremental = 5;
// forcePull describes if the builder should pull the images from registry prior to building.
optional bool forcePull = 6;
}
// SourceControlUser defines the identity of a user of source control
message SourceControlUser {
// name of the source control user
optional string name = 1;
// email of the source control user
optional string email = 2;
}
// SourceRevision is the revision or commit information from the source for the build
message SourceRevision {
// type of the build source, may be one of 'Source', 'Dockerfile', 'Binary', or 'Images'
// +k8s:conversion-gen=false
optional string type = 1;
// Git contains information about git-based build source
optional GitSourceRevision git = 2;
}
// SourceStrategyOptions contains extra strategy options for Source builds
message SourceStrategyOptions {
// incremental overrides the source-strategy incremental option in the build config
optional bool incremental = 1;
}
// StageInfo contains details about a build stage.
message StageInfo {
// name is a unique identifier for each build stage that occurs.
optional string name = 1;
// startTime is a timestamp representing the server time when this Stage started.
// It is represented in RFC3339 form and is in UTC.
optional k8s.io.apimachinery.pkg.apis.meta.v1.Time startTime = 2;
// durationMilliseconds identifies how long the stage took
// to complete in milliseconds.
// Note: the duration of a stage can exceed the sum of the duration of the steps within
// the stage as not all actions are accounted for in explicit build steps.
optional int64 durationMilliseconds = 3;
// steps contains details about each step that occurs during a build stage
// including start time and duration in milliseconds.
repeated StepInfo steps = 4;
}
// StepInfo contains details about a build step.
message StepInfo {
// name is a unique identifier for each build step.
optional string name = 1;
// startTime is a timestamp representing the server time when this Step started.
// it is represented in RFC3339 form and is in UTC.
optional k8s.io.apimachinery.pkg.apis.meta.v1.Time startTime = 2;
// durationMilliseconds identifies how long the step took
// to complete in milliseconds.
optional int64 durationMilliseconds = 3;
}
// WebHookTrigger is a trigger that gets invoked using a webhook type of post
message WebHookTrigger {
// secret used to validate requests.
// Deprecated: use SecretReference instead.
optional string secret = 1;
// allowEnv determines whether the webhook can set environment variables; can only
// be set to true for GenericWebHook.
optional bool allowEnv = 2;
// secretReference is a reference to a secret in the same namespace,
// containing the value to be validated when the webhook is invoked.
// The secret being referenced must contain a key named "WebHookSecretKey", the value
// of which will be checked against the value supplied in the webhook invocation.
optional SecretLocalReference secretReference = 3;
}
|