@@ -8297,6 +8297,19 @@ func GetOpenAPIDefinitions(ref openapi.ReferenceCallback) map[string]openapi.Ope
8297
8297
Format: "",
8298
8298
},
8299
8299
},
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
+ },
8300
8313
"hostsubnetlength": {
8301
8314
SchemaProps: spec.SchemaProps{
8302
8315
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
8319
8332
},
8320
8333
},
8321
8334
},
8322
- Required: []string{"network", "hostsubnetlength", "serviceNetwork"},
8335
+ Required: []string{"network", "clusterNetworks", " hostsubnetlength", "serviceNetwork"},
8323
8336
},
8324
8337
},
8325
8338
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{},
8327
8363
},
8328
8364
"github.com/openshift/origin/pkg/sdn/apis/network/v1.ClusterNetworkList": {
8329
8365
Schema: spec.Schema{
0 commit comments