Skip to content

Commit 5ec1b35

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 d29dd8e commit 5ec1b35

14 files changed

+216
-190
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 {

0 commit comments

Comments
 (0)