Skip to content

Commit 41d0f9b

Browse files
authored
Merge branch 'master' into BZ1429823
2 parents 066995f + 40bcfef commit 41d0f9b

File tree

485 files changed

+25867
-1767
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

485 files changed

+25867
-1767
lines changed

Godeps/Godeps.json

+7-27
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/protobuf-spec/github_com_openshift_origin_pkg_build_api_v1.proto

+11-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/protobuf-spec/github_com_openshift_origin_pkg_template_api_v1.proto

+106
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/swagger-spec/oapi-v1.json

+9-1
Original file line numberDiff line numberDiff line change
@@ -23564,7 +23564,11 @@
2356423564
"items": {
2356523565
"$ref": "v1.EnvVar"
2356623566
},
23567-
"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"
23567+
"description": "buildArgs contains build arguments that will be resolved in the Dockerfile. See https://docs.docker.com/engine/reference/builder/#/arg for more details."
23568+
},
23569+
"imageOptimizationPolicy": {
23570+
"$ref": "v1.ImageOptimizationPolicy",
23571+
"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."
2356823572
}
2356923573
}
2357023574
},
@@ -23683,6 +23687,10 @@
2368323687
}
2368423688
}
2368523689
},
23690+
"v1.ImageOptimizationPolicy": {
23691+
"id": "v1.ImageOptimizationPolicy",
23692+
"properties": {}
23693+
},
2368623694
"v1.SourceBuildStrategy": {
2368723695
"id": "v1.SourceBuildStrategy",
2368823696
"description": "SourceBuildStrategy defines input parameters specific to an Source build.",

api/swagger-spec/openshift-openapi-spec.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -69966,7 +69966,7 @@
6996669966
"description": "DockerBuildStrategy defines input parameters specific to Docker build.",
6996769967
"properties": {
6996869968
"buildArgs": {
69969-
"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",
69969+
"description": "buildArgs contains build arguments that will be resolved in the Dockerfile. See https://docs.docker.com/engine/reference/builder/#/arg for more details.",
6997069970
"type": "array",
6997169971
"items": {
6997269972
"$ref": "#/definitions/v1.EnvVar"
@@ -69991,6 +69991,10 @@
6999169991
"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.",
6999269992
"$ref": "#/definitions/v1.ObjectReference"
6999369993
},
69994+
"imageOptimizationPolicy": {
69995+
"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.",
69996+
"type": "string"
69997+
},
6999469998
"noCache": {
6999569999
"description": "noCache if set to true indicates that the docker build must be executed with the --no-cache=true flag",
6999670000
"type": "boolean"

0 commit comments

Comments
 (0)