Skip to content

Commit 2e33f3f

Browse files
Merge pull request #17035 from smarterclayton/set_defaults
Automatic merge from submit-queue. DeploymentConfig replicas should be optional, other fields too Make a set of fields truly optional in openapi, and also make replicas a pointer so we can default it. Found this when I tried to use --validate - these were a bunch of obvious things.
2 parents 1f2c61a + f5624be commit 2e33f3f

10 files changed

+39
-30
lines changed

api/protobuf-spec/github_com_openshift_origin_pkg_apps_apis_apps_v1.proto

+4
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_image_apis_image_v1.proto

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

api/swagger-spec/oapi-v1.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -23170,8 +23170,7 @@
2317023170
"id": "v1.DeploymentConfig",
2317123171
"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.",
2317223172
"required": [
23173-
"spec",
23174-
"status"
23173+
"spec"
2317523174
],
2317623175
"properties": {
2317723176
"kind": {

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

+2-11
Original file line numberDiff line numberDiff line change
@@ -87032,8 +87032,7 @@
8703287032
"com.github.openshift.origin.pkg.apps.apis.apps.v1.DeploymentConfig": {
8703387033
"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.",
8703487034
"required": [
87035-
"spec",
87036-
"status"
87035+
"spec"
8703787036
],
8703887037
"properties": {
8703987038
"apiVersion": {
@@ -87192,12 +87191,6 @@
8719287191
},
8719387192
"com.github.openshift.origin.pkg.apps.apis.apps.v1.DeploymentConfigSpec": {
8719487193
"description": "DeploymentConfigSpec represents the desired state of the deployment.",
87195-
"required": [
87196-
"strategy",
87197-
"triggers",
87198-
"replicas",
87199-
"test"
87200-
],
8720187194
"properties": {
8720287195
"minReadySeconds": {
8720387196
"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)",
@@ -90677,9 +90670,7 @@
9067790670
"com.github.openshift.origin.pkg.image.apis.image.v1.TagReference": {
9067890671
"description": "TagReference specifies optional annotations for images using this tag and an optional reference to an ImageStreamTag, ImageStreamImage, or DockerImage this tag should track.",
9067990672
"required": [
90680-
"name",
90681-
"annotations",
90682-
"generation"
90673+
"name"
9068390674
],
9068490675
"properties": {
9068590676
"annotations": {

pkg/apps/apis/apps/v1/defaults_test.go

+15-13
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package v1
22

33
import (
4+
"fmt"
45
"reflect"
56
"testing"
67

@@ -540,19 +541,20 @@ func TestDefaults(t *testing.T) {
540541
}
541542

542543
for i, test := range tests {
543-
t.Logf("test %d", i)
544-
original := test.original
545-
expected := test.expected
546-
obj2 := roundTrip(t, runtime.Object(original))
547-
got, ok := obj2.(*DeploymentConfig)
548-
if !ok {
549-
t.Errorf("unexpected object: %v", got)
550-
t.FailNow()
551-
}
552-
// TODO(rebase): check that there are no fields which have different semantics for nil and []
553-
if !equality.Semantic.DeepEqual(got.Spec, expected.Spec) {
554-
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-
}
544+
t.Run(fmt.Sprintf("%d", i), func(t *testing.T) {
545+
t.Logf("test %d", i)
546+
original := test.original
547+
expected := test.expected
548+
obj2 := roundTrip(t, runtime.Object(original))
549+
got, ok := obj2.(*DeploymentConfig)
550+
if !ok {
551+
t.Fatalf("unexpected object: %v", got)
552+
}
553+
// TODO(rebase): check that there are no fields which have different semantics for nil and []
554+
if !equality.Semantic.DeepEqual(got.Spec, expected.Spec) {
555+
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))
556+
}
557+
})
556558
}
557559
}
558560

pkg/apps/apis/apps/v1/generated.proto

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

pkg/apps/apis/apps/v1/types.go

+5-1
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,13 @@ type DeploymentConfig struct {
3333
Spec DeploymentConfigSpec `json:"spec" protobuf:"bytes,2,opt,name=spec"`
3434

3535
// Status represents the current deployment state.
36-
Status DeploymentConfigStatus `json:"status" protobuf:"bytes,3,opt,name=status"`
36+
Status DeploymentConfigStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
3737
}
3838

3939
// DeploymentConfigSpec represents the desired state of the deployment.
4040
type DeploymentConfigSpec struct {
4141
// Strategy describes how a deployment is executed.
42+
// +optional
4243
Strategy DeploymentStrategy `json:"strategy" protobuf:"bytes,1,opt,name=strategy"`
4344

4445
// MinReadySeconds is the minimum number of seconds for which a newly created pod should
@@ -49,9 +50,11 @@ type DeploymentConfigSpec struct {
4950
// Triggers determine how updates to a DeploymentConfig result in new deployments. If no triggers
5051
// are defined, a new deployment can only occur as a result of an explicit client update to the
5152
// DeploymentConfig with a new LatestVersion. If null, defaults to having a config change trigger.
53+
// +optional
5254
Triggers DeploymentTriggerPolicies `json:"triggers" protobuf:"bytes,2,rep,name=triggers"`
5355

5456
// Replicas is the number of desired replicas.
57+
// +optional
5558
Replicas int32 `json:"replicas" protobuf:"varint,3,opt,name=replicas"`
5659

5760
// RevisionHistoryLimit is the number of old ReplicationControllers to retain to allow for rollbacks.
@@ -62,6 +65,7 @@ type DeploymentConfigSpec struct {
6265
// Test ensures that this deployment config will have zero replicas except while a deployment is running. This allows the
6366
// deployment config to be used as a continuous deployment test - triggering on images, running the deployment, and then succeeding
6467
// or failing. Post strategy hooks and After actions can be used to integrate successful deployment with an action.
68+
// +optional
6569
Test bool `json:"test" protobuf:"varint,5,opt,name=test"`
6670

6771
// Paused indicates that the deployment config is paused resulting in no new deployments on template

pkg/image/apis/image/v1/generated.proto

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

pkg/image/apis/image/v1/types.go

+2
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,7 @@ type TagReference struct {
203203
// Name of the tag
204204
Name string `json:"name" protobuf:"bytes,1,opt,name=name"`
205205
// Optional; if specified, annotations that are applied to images retrieved via ImageStreamTags.
206+
// +optional
206207
Annotations map[string]string `json:"annotations" protobuf:"bytes,2,rep,name=annotations"`
207208
// Optional; if specified, a reference to another image that this tag should point to. Valid values
208209
// are ImageStreamTag, ImageStreamImage, and DockerImage.
@@ -217,6 +218,7 @@ type TagReference struct {
217218
// to import the newest remote tag. To trigger a new import, clients may set this value to zero which
218219
// will reset the generation to the latest stream generation. Legacy clients will send this value as
219220
// nil which will be merged with the current tag generation.
221+
// +optional
220222
Generation *int64 `json:"generation" protobuf:"varint,5,opt,name=generation"`
221223
// ImportPolicy is information that controls how images may be imported by the server.
222224
ImportPolicy TagImportPolicy `json:"importPolicy,omitempty" protobuf:"bytes,6,opt,name=importPolicy"`

pkg/openapi/zz_generated.openapi.go

+2-3
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ func GetOpenAPIDefinitions(ref openapi.ReferenceCallback) map[string]openapi.Ope
192192
},
193193
},
194194
},
195-
Required: []string{"spec", "status"},
195+
Required: []string{"spec"},
196196
},
197197
},
198198
Dependencies: []string{
@@ -429,7 +429,6 @@ func GetOpenAPIDefinitions(ref openapi.ReferenceCallback) map[string]openapi.Ope
429429
},
430430
},
431431
},
432-
Required: []string{"strategy", "triggers", "replicas", "test"},
433432
},
434433
},
435434
Dependencies: []string{
@@ -6741,7 +6740,7 @@ func GetOpenAPIDefinitions(ref openapi.ReferenceCallback) map[string]openapi.Ope
67416740
},
67426741
},
67436742
},
6744-
Required: []string{"name", "annotations", "generation"},
6743+
Required: []string{"name"},
67456744
},
67466745
},
67476746
Dependencies: []string{

0 commit comments

Comments
 (0)