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-sheidkamp #1303

Open
wants to merge 1 commit into
base: gloo-main
Choose a base branch
from
Open
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
6 changes: 6 additions & 0 deletions api/gloo/enterprise.gloo/v1/auth_config.proto
Original file line number Diff line number Diff line change
Expand Up @@ -1157,6 +1157,9 @@ message ApiKeyAuth {
// to the request.
bool required = 2;
}

// Flag to enable data plane metadata validation. If set to `true`, the data plane will validate the metadata.
bool enable_data_plane_metadata_validation = 8;
}
message K8sSecretApiKeyStorage {
// Identify all valid API key secrets that match the provided label selector.<br/>
Expand Down Expand Up @@ -2109,6 +2112,9 @@ message ExtAuthConfig {
K8sSecretApiKeyStorage k8s_secret_apikey_storage = 4;
AerospikeApiKeyStorage aerospike_apikey_storage = 5;
}

// Flag to enable data plane metadata validation. If set to `true`, the data plane will validate the metadata.
bool enable_data_plane_metadata_validation = 6;
}

message OpaAuthConfig {
Expand Down
14 changes: 14 additions & 0 deletions api/gloo/gloo/v1/enterprise/options/ai/ai.proto
Original file line number Diff line number Diff line change
Expand Up @@ -354,10 +354,24 @@ message SemanticCache {
// +kubebuilder:validation:Maximum=1
float score_threshold = 2;
}

message Weaviate {
// Connection string to the Weaviate database, scheme should NOT be included.
// For example: weaviate.my-ns.svc.cluster.local
// NOT: http://weaviate.my-ns.svc.cluster.local
string host = 1;
// HTTP port to use, if unset will default to 8080
uint32 http_port = 2;
// GRPC port to use, if unset will default to 50051
uint32 grpc_port = 3;
// Whether or not to use a secure connection, true by default
bool insecure = 4;
}
// Data store from which to cache the request/response pairs
message DataStore {
oneof datastore {
Redis redis = 1;
Weaviate weaviate = 2;
}
}
enum Mode {
Expand Down
4 changes: 4 additions & 0 deletions pkg/api/enterprise.gloo.solo.io/v1/auth_config.pb.clone.go

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

8 changes: 8 additions & 0 deletions pkg/api/enterprise.gloo.solo.io/v1/auth_config.pb.equal.go

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

2,336 changes: 1,182 additions & 1,154 deletions pkg/api/enterprise.gloo.solo.io/v1/auth_config.pb.go

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions pkg/api/enterprise.gloo.solo.io/v1/auth_config.pb.hash.go

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

31 changes: 31 additions & 0 deletions pkg/api/gloo.solo.io/v1/enterprise/options/ai/ai.pb.clone.go

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

55 changes: 55 additions & 0 deletions pkg/api/gloo.solo.io/v1/enterprise/options/ai/ai.pb.equal.go

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

Loading
Loading