generated files

Kubernetes-commit: a67b32ce9c7f1da293a8bb0fc98d3d15f111e660
This commit is contained in:
Tim Allclair 2020-09-09 12:01:51 -07:00 committed by Kubernetes Publisher
parent 5b8a366d87
commit 237dd3829d
1 changed files with 6 additions and 0 deletions

View File

@ -55,6 +55,12 @@ message Event {
optional k8s.io.api.authentication.v1.UserInfo impersonatedUser = 7;
// Source IPs, from where the request originated and intermediate proxies.
// The source IPs are listed from (in order):
// 1. X-Forwarded-For request header IPs
// 2. X-Real-Ip header, if not present in the X-Forwarded-For list
// 3. The remote address for the connection, if it doesn't match the last
// IP in the list up to here (X-Forwarded-For or X-Real-Ip).
// Note: All but the last IP can be arbitrarily set by the client.
// +optional
repeated string sourceIPs = 8;