You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: api/swagger-spec/oapi-v1.json
+1-2
Original file line number
Diff line number
Diff line change
@@ -23170,8 +23170,7 @@
23170
23170
"id": "v1.DeploymentConfig",
23171
23171
"description": "Deployment Configs define the template for a pod and manages deploying new images or configuration changes. A single deployment configuration is usually analogous to a single micro-service. Can support many different deployment patterns, including full restart, customizable rolling updates, and fully custom behaviors, as well as pre- and post- deployment hooks. Each individual deployment is represented as a replication controller.\n\nA deployment is \"triggered\" when its configuration is changed or a tag in an Image Stream is changed. Triggers can be disabled to allow manual control over a deployment. The \"strategy\" determines how the deployment is carried out and may be changed at any time. The `latestVersion` field is updated when a new deployment is triggered by any means.",
"description": "Deployment Configs define the template for a pod and manages deploying new images or configuration changes. A single deployment configuration is usually analogous to a single micro-service. Can support many different deployment patterns, including full restart, customizable rolling updates, and fully custom behaviors, as well as pre- and post- deployment hooks. Each individual deployment is represented as a replication controller.\n\nA deployment is \"triggered\" when its configuration is changed or a tag in an Image Stream is changed. Triggers can be disabled to allow manual control over a deployment. The \"strategy\" determines how the deployment is carried out and may be changed at any time. The `latestVersion` field is updated when a new deployment is triggered by any means.",
"description": "DeploymentConfigSpec represents the desired state of the deployment.",
87195
-
"required": [
87196
-
"strategy",
87197
-
"triggers",
87198
-
"replicas",
87199
-
"test"
87200
-
],
87201
87194
"properties": {
87202
87195
"minReadySeconds": {
87203
87196
"description": "MinReadySeconds is the minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)",
"description": "TagReference specifies optional annotations for images using this tag and an optional reference to an ImageStreamTag, ImageStreamImage, or DockerImage this tag should track.",
t.Errorf("got different than expected:\nA:\t%#v\nB:\t%#v\n\nDiff:\n%s\n\n%s", got, expected, diff.ObjectDiff(expected, got), diff.ObjectGoPrintSideBySide(expected, got))
555
-
}
556
+
t.Run(fmt.Sprintf("%d", i), func(t*testing.T) {
557
+
t.Logf("test %d", i)
558
+
original:=test.original
559
+
expected:=test.expected
560
+
obj2:=roundTrip(t, runtime.Object(original))
561
+
got, ok:=obj2.(*DeploymentConfig)
562
+
if!ok {
563
+
t.Fatalf("unexpected object: %v", got)
564
+
}
565
+
// TODO(rebase): check that there are no fields which have different semantics for nil and []
t.Errorf("got different than expected:\nA:\t%#v\nB:\t%#v\n\nDiff:\n%s\n\n%s", got, expected, diff.ObjectDiff(expected, got), diff.ObjectGoPrintSideBySide(expected, got))
0 commit comments