Skip to content

Commit

Permalink
Sync APIs. @tag-name=gloo-v1.17.17 (#1382)
Browse files Browse the repository at this point in the history
Co-authored-by: soloio-bot <[email protected]>
  • Loading branch information
soloio-bot and soloio-bot authored Dec 18, 2024
1 parent 830dc03 commit 458d372
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 4 deletions.
12 changes: 10 additions & 2 deletions api/gloo/enterprise.gloo/v1/auth_config.proto
Original file line number Diff line number Diff line change
Expand Up @@ -465,8 +465,12 @@ message UserSession {
// Cookies are not sent on normal cross-site subrequests, but are sent when
// navigating to the origin site.
LaxMode = 1;
// Only be sent in a first-party context and not be sent along with requests
// initiated by third party websites.
// Cookies are sent only in first-party contexts and are not sent along with requests
// initiated by third-party websites.
//
// **Warning**: Do not use this mode if the app and the IdP have different domains.
// In this case, some browsers incorrectly detect the redirect from `/callback` to `/login`
// as a cross-site request.
StrictMode = 2;
// Cookies are sent in all contexts. Cookie NotSecure must be unset.
NoneMode = 3;
Expand Down Expand Up @@ -1060,6 +1064,8 @@ message ApiKeyAuth {

oneof storage_backend {
K8sSecretApiKeyStorage k8s_secret_apikey_storage = 6;
// <b>Deprecated</b>: Support for Aerospike is deprecated and will be removed in a future release.
// Use of this feature is not recommended.
AerospikeApiKeyStorage aerospike_apikey_storage = 7;
}

Expand Down Expand Up @@ -1101,6 +1107,8 @@ message K8sSecretApiKeyStorage {
repeated core.solo.io.ResourceRef api_key_secret_refs = 2;
}

// <b>Deprecated</b>: Support for Aerospike is deprecated and will be removed in a future release.
// Use of this feature is not recommended.
message AerospikeApiKeyStorage {
// The IP address or hostname of one of the cluster members of your Aerospike database. The address must be reachable from Gloo Gateway, such as in a virtual machine with a public IP address or in a pod in the cluster.
// The client automatically discovers other members of the cluster after establishing a connection.
Expand Down
12 changes: 10 additions & 2 deletions pkg/api/enterprise.gloo.solo.io/v1/auth_config.pb.go

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

0 comments on commit 458d372

Please sign in to comment.