Merge pull request #390 from aledbf/fix-rps-comment

Fix RateLimit comment
This commit is contained in:
Manuel Alejandro de Brito Fontes 2017-03-07 12:33:14 -03:00 committed by GitHub
commit 7164c3fd56

View file

@ -36,10 +36,10 @@ const (
defSharedSize = 5 defSharedSize = 5
) )
// RateLimit returns rate limit configuration for an Ingress rule // RateLimit returns rate limit configuration for an Ingress rule limiting the
// Is possible to limit the number of connections per IP address or // number of connections per IP address and/or connections per second.
// connections per second. // If you both annotations are specified in a single Ingress rule, RPS limits
// Note: Is possible to specify both limits // takes precedence
type RateLimit struct { type RateLimit struct {
// Connections indicates a limit with the number of connections per IP address // Connections indicates a limit with the number of connections per IP address
Connections Zone `json:"connections"` Connections Zone `json:"connections"`