Skip to content

Commit

Permalink
Sync APIs. @tag-name=gloo-v1.18.0-rc4 (#1377)
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 6, 2024
1 parent ea6fb02 commit 2b6ffaf
Show file tree
Hide file tree
Showing 4 changed files with 24 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 @@ -484,8 +484,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 @@ -1145,6 +1149,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 @@ -1186,6 +1192,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 Edge, 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
Original file line number Diff line number Diff line change
Expand Up @@ -580,6 +580,8 @@ message ExtAuthConfig {

oneof storage_backend {
K8sSecretApiKeyStorage k8s_secret_apikey_storage = 4;
// <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 = 5;
ServerDefaultApiKeyStorage server_default_apikey_storage = 7;
}
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.

2 changes: 2 additions & 0 deletions pkg/api/enterprise.gloo.solo.io/v1/extauth-internal.pb.go

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

0 comments on commit 2b6ffaf

Please sign in to comment.