Skip to content

Commit

Permalink
Merge branch 'master' into BZ1429823
Browse files Browse the repository at this point in the history
  • Loading branch information
knobunc authored Mar 23, 2017
2 parents 066995f + 40bcfef commit 41d0f9b
Show file tree
Hide file tree
Showing 485 changed files with 25,867 additions and 1,767 deletions.
34 changes: 7 additions & 27 deletions Godeps/Godeps.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 9 additions & 1 deletion api/swagger-spec/oapi-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -23564,7 +23564,11 @@
"items": {
"$ref": "v1.EnvVar"
},
"description": "Args contains any build arguments that are to be passed to Docker. See https://docs.docker.com/engine/reference/builder/#/arg for more details"
"description": "buildArgs contains build arguments that will be resolved in the Dockerfile. See https://docs.docker.com/engine/reference/builder/#/arg for more details."
},
"imageOptimizationPolicy": {
"$ref": "v1.ImageOptimizationPolicy",
"description": "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 Docker 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."
}
}
},
Expand Down Expand Up @@ -23683,6 +23687,10 @@
}
}
},
"v1.ImageOptimizationPolicy": {
"id": "v1.ImageOptimizationPolicy",
"properties": {}
},
"v1.SourceBuildStrategy": {
"id": "v1.SourceBuildStrategy",
"description": "SourceBuildStrategy defines input parameters specific to an Source build.",
Expand Down
6 changes: 5 additions & 1 deletion api/swagger-spec/openshift-openapi-spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -69966,7 +69966,7 @@
"description": "DockerBuildStrategy defines input parameters specific to Docker build.",
"properties": {
"buildArgs": {
"description": "Args contains any build arguments that are to be passed to Docker. See https://docs.docker.com/engine/reference/builder/#/arg for more details",
"description": "buildArgs contains build arguments that will be resolved in the Dockerfile. See https://docs.docker.com/engine/reference/builder/#/arg for more details.",
"type": "array",
"items": {
"$ref": "#/definitions/v1.EnvVar"
Expand All @@ -69991,6 +69991,10 @@
"description": "from is reference to an DockerImage, ImageStreamTag, or ImageStreamImage from which the docker image should be pulled the resulting image will be used in the FROM line of the Dockerfile for this build.",
"$ref": "#/definitions/v1.ObjectReference"
},
"imageOptimizationPolicy": {
"description": "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 Docker 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.",
"type": "string"
},
"noCache": {
"description": "noCache if set to true indicates that the docker build must be executed with the --no-cache=true flag",
"type": "boolean"
Expand Down
Loading

0 comments on commit 41d0f9b

Please sign in to comment.