forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
swagger_doc.go
18 lines (15 loc) · 1.07 KB
/
swagger_doc.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package v1
// This file contains methods that can be used by the go-restful package to generate Swagger
// documentation for the object types found in 'types.go' This file is automatically generated
// by hack/update-generated-swagger-descriptions.sh and should be run after a full build of OpenShift.
// ==== DO NOT EDIT THIS FILE MANUALLY ====
var map_BuildOverridesConfig = map[string]string{
"": "BuildOverridesConfig controls override settings for builds",
"forcePull": "forcePull indicates whether the build strategy should always be set to ForcePull=true",
"imageLabels": "imageLabels is a list of docker labels that are applied to the resulting image. If user provided a label in their Build/BuildConfig with the same name as one in this list, the user's label will be overwritten.",
"nodeSelector": "nodeSelector is a selector which must be true for the build pod to fit on a node",
"annotations": "annotations are annotations that will be added to the build pod",
}
func (BuildOverridesConfig) SwaggerDoc() map[string]string {
return map_BuildOverridesConfig
}