Skip to content

Commit bb7d9b7

Browse files
auto generated files
1 parent 31a1f14 commit bb7d9b7

File tree

4 files changed

+124
-59
lines changed

4 files changed

+124
-59
lines changed

pkg/openapi/zz_generated.openapi.go

+38-2
Original file line numberDiff line numberDiff line change
@@ -8297,6 +8297,19 @@ func GetOpenAPIDefinitions(ref openapi.ReferenceCallback) map[string]openapi.Ope
82978297
Format: "",
82988298
},
82998299
},
8300+
"clusterNetworks": {
8301+
SchemaProps: spec.SchemaProps{
8302+
Description: "PLACEHOLDER",
8303+
Type: []string{"array"},
8304+
Items: &spec.SchemaOrArray{
8305+
Schema: &spec.Schema{
8306+
SchemaProps: spec.SchemaProps{
8307+
Ref: ref("github.com/openshift/origin/pkg/sdn/apis/network/v1.ClusterNetworkEntry"),
8308+
},
8309+
},
8310+
},
8311+
},
8312+
},
83008313
"hostsubnetlength": {
83018314
SchemaProps: spec.SchemaProps{
83028315
Description: "HostSubnetLength is the number of bits of network to allocate to each node. eg, 8 would mean that each node would have a /24 slice of the overlay network for its pods",
@@ -8319,11 +8332,34 @@ func GetOpenAPIDefinitions(ref openapi.ReferenceCallback) map[string]openapi.Ope
83198332
},
83208333
},
83218334
},
8322-
Required: []string{"network", "hostsubnetlength", "serviceNetwork"},
8335+
Required: []string{"network", "clusterNetworks", "hostsubnetlength", "serviceNetwork"},
83238336
},
83248337
},
83258338
Dependencies: []string{
8326-
"k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"},
8339+
"github.com/openshift/origin/pkg/sdn/apis/network/v1.ClusterNetworkEntry", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"},
8340+
},
8341+
"github.com/openshift/origin/pkg/sdn/apis/network/v1.ClusterNetworkEntry": {
8342+
Schema: spec.Schema{
8343+
SchemaProps: spec.SchemaProps{
8344+
Description: "PLACEHOLDER",
8345+
Properties: map[string]spec.Schema{
8346+
"CIDR": {
8347+
SchemaProps: spec.SchemaProps{
8348+
Type: []string{"string"},
8349+
Format: "",
8350+
},
8351+
},
8352+
"hostsubnetlength": {
8353+
SchemaProps: spec.SchemaProps{
8354+
Type: []string{"integer"},
8355+
Format: "int64",
8356+
},
8357+
},
8358+
},
8359+
Required: []string{"CIDR", "hostsubnetlength"},
8360+
},
8361+
},
8362+
Dependencies: []string{},
83278363
},
83288364
"github.com/openshift/origin/pkg/sdn/apis/network/v1.ClusterNetworkList": {
83298365
Schema: spec.Schema{

pkg/sdn/apis/network/v1/generated.pb.go

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

pkg/sdn/apis/network/v1/generated.proto

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

pkg/sdn/apis/network/v1/zz_generated.conversion.go

+2
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ func Convert_network_ClusterNetwork_To_v1_ClusterNetwork(in *network.ClusterNetw
8080

8181
func autoConvert_v1_ClusterNetworkEntry_To_network_ClusterNetworkEntry(in *ClusterNetworkEntry, out *network.ClusterNetworkEntry, s conversion.Scope) error {
8282
out.CIDR = in.CIDR
83+
out.HostSubnetLength = in.HostSubnetLength
8384
return nil
8485
}
8586

@@ -89,6 +90,7 @@ func Convert_v1_ClusterNetworkEntry_To_network_ClusterNetworkEntry(in *ClusterNe
8990

9091
func autoConvert_network_ClusterNetworkEntry_To_v1_ClusterNetworkEntry(in *network.ClusterNetworkEntry, out *ClusterNetworkEntry, s conversion.Scope) error {
9192
out.CIDR = in.CIDR
93+
out.HostSubnetLength = in.HostSubnetLength
9294
return nil
9395
}
9496

0 commit comments

Comments
 (0)