Skip to content

Commit

Permalink
update ttl docs (#2931)
Browse files Browse the repository at this point in the history
* update ttl docs

Signed-off-by: Rama Chavali <[email protected]>

* update ttl docs

Signed-off-by: Rama Chavali <[email protected]>

---------

Signed-off-by: Rama Chavali <[email protected]>
  • Loading branch information
ramaraochavali authored Sep 15, 2023
1 parent 405bf0a commit 3a44356
Show file tree
Hide file tree
Showing 6 changed files with 408 additions and 415 deletions.
389 changes: 195 additions & 194 deletions networking/v1alpha3/destination_rule.pb.go

Large diffs are not rendered by default.

9 changes: 5 additions & 4 deletions networking/v1alpha3/destination_rule.pb.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions networking/v1alpha3/destination_rule.proto
Original file line number Diff line number Diff line change
Expand Up @@ -591,15 +591,16 @@ message LoadBalancerSettings {
uint64 table_size = 1;
};
// Describes a HTTP cookie that will be used as the hash key for the
// Consistent Hash load balancer. If the cookie is not present, it will
// be generated.
// Consistent Hash load balancer.
message HTTPCookie {
// Name of the cookie.
string name = 1 [(google.api.field_behavior) = REQUIRED];
// Path to set for the cookie.
string path = 2;
// Lifetime of the cookie.
google.protobuf.Duration ttl = 3 [(google.api.field_behavior) = REQUIRED];
// Lifetime of the cookie. If specified, a cookie with the TTL will be
// generated if the cookie is not present. If the TTL is present and zero,
// the generated cookie will be a session cookie.
google.protobuf.Duration ttl = 3;
};

// The hash key to use.
Expand Down
Loading

0 comments on commit 3a44356

Please sign in to comment.