Skip to content

Commit 0755e9d

Browse files
Merge pull request #1332 from dulek/kuryr-mtu
Update KuryrConfig.MTU setting description
2 parents 462da9d + 860e4f7 commit 0755e9d

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

openapi/generated_openapi/zz_generated.openapi.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

openapi/openapi.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24921,7 +24921,7 @@
2492124921
"type": "boolean"
2492224922
},
2492324923
"mtu": {
24924-
"description": "mtu is the MTU that Kuryr should use when creating pod networks in Neutron. The value has to be lower or equal to the MTU of the nodes network and Neutron has to allow creation of tenant networks with such MTU. If unset Pod networks will be created with the same MTU as the nodes network has.",
24924+
"description": "mtu is the MTU that Kuryr should use when creating pod networks in Neutron. The value has to be lower or equal to the MTU of the nodes network and Neutron has to allow creation of tenant networks with such MTU. If unset Pod networks will be created with the same MTU as the nodes network has. This also affects the services network created by cluster-network-operator.",
2492524925
"type": "integer",
2492624926
"format": "int64"
2492724927
},

operator/v1/0000_70_cluster-network-operator_01.crd.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ spec:
156156
description: enablePortPoolsPrepopulation when true will make Kuryr prepopulate each newly created port pool with a minimum number of ports. Kuryr uses Neutron port pooling to fight the fact that it takes a significant amount of time to create one. It creates a number of ports when the first pod that is configured to use the dedicated network for pods is created in a namespace, and keeps them ready to be attached to pods. Port prepopulation is disabled by default.
157157
type: boolean
158158
mtu:
159-
description: mtu is the MTU that Kuryr should use when creating pod networks in Neutron. The value has to be lower or equal to the MTU of the nodes network and Neutron has to allow creation of tenant networks with such MTU. If unset Pod networks will be created with the same MTU as the nodes network has.
159+
description: mtu is the MTU that Kuryr should use when creating pod networks in Neutron. The value has to be lower or equal to the MTU of the nodes network and Neutron has to allow creation of tenant networks with such MTU. If unset Pod networks will be created with the same MTU as the nodes network has. This also affects the services network created by cluster-network-operator.
160160
type: integer
161161
format: int32
162162
minimum: 0

operator/v1/types_network.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,8 @@ type KuryrConfig struct {
404404
// mtu is the MTU that Kuryr should use when creating pod networks in Neutron.
405405
// The value has to be lower or equal to the MTU of the nodes network and Neutron has
406406
// to allow creation of tenant networks with such MTU. If unset Pod networks will be
407-
// created with the same MTU as the nodes network has.
407+
// created with the same MTU as the nodes network has. This also affects the services
408+
// network created by cluster-network-operator.
408409
// +kubebuilder:validation:Minimum=0
409410
// +optional
410411
MTU *uint32 `json:"mtu,omitempty"`

operator/v1/zz_generated.swagger_doc_generated.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)