Merge pull request #99795 from robscott/endpointslice-ports-validation

Increasing maximum number of ports allowed in EndpointSlice
This commit is contained in:
Kubernetes Prow Robot 2021-03-04 13:39:56 -08:00 committed by GitHub
commit d11582b44b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,7 +40,7 @@ var (
)
maxTopologyLabels = 16
maxAddresses = 100
maxPorts = 100
maxPorts = 20000
maxEndpoints = 1000
)