Add min/max kubetags to meshgatewaylistener (#20149)

* add kubetags

* generate proto
This commit is contained in:
sarahalsmiller 2024-01-10 13:12:29 -06:00 committed by GitHub
parent cff5f0ce3b
commit 7d92a5dfd6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View File

@ -87,6 +87,8 @@ type MeshGatewayListener struct {
unknownFields protoimpl.UnknownFields
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
// +kubebuilder:validation:Maximum=65535
// +kubebuilder:validation:Minimum=0
Port uint32 `protobuf:"varint,2,opt,name=port,proto3" json:"port,omitempty"`
}

View File

@ -19,5 +19,7 @@ message MeshGateway {
message MeshGatewayListener {
string name = 1;
// +kubebuilder:validation:Maximum=65535
// +kubebuilder:validation:Minimum=0
uint32 port = 2;
}