Skip to content

Commit 9cfe5b4

Browse files
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.
1 parent 951a379 commit 9cfe5b4

15 files changed

+243
-203
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.go

+4
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@ func SetDefaults_DeploymentConfigSpec(obj *DeploymentConfigSpec) {
4343
if len(obj.Selector) == 0 && obj.Template != nil {
4444
obj.Selector = obj.Template.Labels
4545
}
46+
if obj.Replicas == nil {
47+
one := int32(1)
48+
obj.Replicas = &one
49+
}
4650

4751
// if you only specify a single container, default the TagImages hook to the container name
4852
if obj.Template != nil && len(obj.Template.Spec.Containers) == 1 {

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

+27-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

@@ -14,6 +15,7 @@ import (
1415
)
1516

1617
func TestDefaults(t *testing.T) {
18+
one := int32(1)
1719
defaultIntOrString := intstr.FromString("25%")
1820
differentIntOrString := intstr.FromInt(5)
1921
tests := []struct {
@@ -24,6 +26,7 @@ func TestDefaults(t *testing.T) {
2426
original: &DeploymentConfig{},
2527
expected: &DeploymentConfig{
2628
Spec: DeploymentConfigSpec{
29+
Replicas: &one,
2730
Strategy: DeploymentStrategy{
2831
Type: DeploymentStrategyTypeRolling,
2932
RollingParams: &RollingDeploymentStrategyParams{
@@ -92,6 +95,7 @@ func TestDefaults(t *testing.T) {
9295
},
9396
expected: &DeploymentConfig{
9497
Spec: DeploymentConfigSpec{
98+
Replicas: &one,
9599
Strategy: DeploymentStrategy{
96100
Type: DeploymentStrategyTypeRecreate,
97101
RecreateParams: &RecreateDeploymentStrategyParams{
@@ -171,6 +175,7 @@ func TestDefaults(t *testing.T) {
171175
},
172176
expected: &DeploymentConfig{
173177
Spec: DeploymentConfigSpec{
178+
Replicas: &one,
174179
Strategy: DeploymentStrategy{
175180
Type: DeploymentStrategyTypeRolling,
176181
RollingParams: &RollingDeploymentStrategyParams{
@@ -211,6 +216,7 @@ func TestDefaults(t *testing.T) {
211216
},
212217
expected: &DeploymentConfig{
213218
Spec: DeploymentConfigSpec{
219+
Replicas: &one,
214220
Strategy: DeploymentStrategy{
215221
Type: DeploymentStrategyTypeRolling,
216222
RollingParams: &RollingDeploymentStrategyParams{
@@ -249,6 +255,7 @@ func TestDefaults(t *testing.T) {
249255
},
250256
expected: &DeploymentConfig{
251257
Spec: DeploymentConfigSpec{
258+
Replicas: &one,
252259
Strategy: DeploymentStrategy{
253260
Type: DeploymentStrategyTypeRolling,
254261
RollingParams: &RollingDeploymentStrategyParams{
@@ -280,6 +287,7 @@ func TestDefaults(t *testing.T) {
280287
},
281288
expected: &DeploymentConfig{
282289
Spec: DeploymentConfigSpec{
290+
Replicas: &one,
283291
Strategy: DeploymentStrategy{
284292
Type: DeploymentStrategyTypeRolling,
285293
RollingParams: &RollingDeploymentStrategyParams{
@@ -312,6 +320,7 @@ func TestDefaults(t *testing.T) {
312320
},
313321
expected: &DeploymentConfig{
314322
Spec: DeploymentConfigSpec{
323+
Replicas: &one,
315324
Strategy: DeploymentStrategy{
316325
Type: DeploymentStrategyTypeRecreate,
317326
RecreateParams: &RecreateDeploymentStrategyParams{
@@ -339,6 +348,7 @@ func TestDefaults(t *testing.T) {
339348
},
340349
expected: &DeploymentConfig{
341350
Spec: DeploymentConfigSpec{
351+
Replicas: &one,
342352
Strategy: DeploymentStrategy{
343353
Type: DeploymentStrategyTypeRecreate,
344354
RecreateParams: &RecreateDeploymentStrategyParams{
@@ -386,6 +396,7 @@ func TestDefaults(t *testing.T) {
386396
},
387397
expected: &DeploymentConfig{
388398
Spec: DeploymentConfigSpec{
399+
Replicas: &one,
389400
Template: &kapiv1.PodTemplateSpec{
390401
Spec: kapiv1.PodSpec{
391402
Containers: []kapiv1.Container{
@@ -458,6 +469,7 @@ func TestDefaults(t *testing.T) {
458469
},
459470
expected: &DeploymentConfig{
460471
Spec: DeploymentConfigSpec{
472+
Replicas: &one,
461473
Template: &kapiv1.PodTemplateSpec{
462474
Spec: kapiv1.PodSpec{
463475
Containers: []kapiv1.Container{
@@ -513,6 +525,7 @@ func TestDefaults(t *testing.T) {
513525
},
514526
expected: &DeploymentConfig{
515527
Spec: DeploymentConfigSpec{
528+
Replicas: &one,
516529
Strategy: DeploymentStrategy{
517530
Type: DeploymentStrategyTypeRolling,
518531
RollingParams: &RollingDeploymentStrategyParams{
@@ -540,19 +553,20 @@ func TestDefaults(t *testing.T) {
540553
}
541554

542555
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-
}
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 []
566+
if !equality.Semantic.DeepEqual(got.Spec, expected.Spec) {
567+
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))
568+
}
569+
})
556570
}
557571
}
558572

0 commit comments

Comments
 (0)