Browse Source

Add min/max kubetags to meshgatewaylistener (#20149)

* add kubetags

* generate proto
pull/20167/head
sarahalsmiller 11 months ago committed by GitHub
parent
commit
7d92a5dfd6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      proto-public/pbmesh/v2beta1/mesh_gateway.pb.go
  2. 2
      proto-public/pbmesh/v2beta1/mesh_gateway.proto

2
proto-public/pbmesh/v2beta1/mesh_gateway.pb.go

@ -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"`
}

2
proto-public/pbmesh/v2beta1/mesh_gateway.proto

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

Loading…
Cancel
Save