Skip to content

Commit

Permalink
Arbitrary image labels: generated files
Browse files Browse the repository at this point in the history
  • Loading branch information
mmilata committed Oct 4, 2016
1 parent ff3af42 commit 577ed67
Show file tree
Hide file tree
Showing 9 changed files with 588 additions and 208 deletions.

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

23 changes: 23 additions & 0 deletions api/swagger-spec/oapi-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -21912,6 +21912,29 @@
"pushSecret": {
"$ref": "v1.LocalObjectReference",
"description": "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)."
},
"imageLabels": {
"type": "array",
"items": {
"$ref": "v1.ImageLabel"
}
}
}
},
"v1.ImageLabel": {
"id": "v1.ImageLabel",
"description": "ImageLabel represents a label applied to the resulting image.",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"description": "name defines the name of the label. It must have non-zero length."
},
"value": {
"type": "string",
"description": "value defines the literal value of the label."
}
}
},
Expand Down
22 changes: 22 additions & 0 deletions api/swagger-spec/openshift-openapi-spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -44620,6 +44620,12 @@
"v1.BuildOutput": {
"description": "BuildOutput is input to a build strategy and describes the Docker image that the strategy should produce.",
"properties": {
"imageLabels": {
"type": "array",
"items": {
"$ref": "#/definitions/v1.ImageLabel"
}
},
"pushSecret": {
"$ref": "#/definitions/v1.LocalObjectReference"
},
Expand Down Expand Up @@ -47526,6 +47532,22 @@
}
}
},
"v1.ImageLabel": {
"description": "ImageLabel represents a label applied to the resulting image.",
"required": [
"name"
],
"properties": {
"name": {
"description": "name defines the name of the label. It must have non-zero length.",
"type": "string"
},
"value": {
"description": "value defines the literal value of the label.",
"type": "string"
}
}
},
"v1.ImageLayer": {
"description": "ImageLayer represents a single layer of the image. Some images may have multiple layers. Some may have none.",
"required": [
Expand Down
Loading

0 comments on commit 577ed67

Please sign in to comment.