Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sync APIs. @tag-name=gloo-v1.17.17 #1382

Merged
merged 1 commit into from
Dec 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.

Loading