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-chore #1310

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
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
7 changes: 7 additions & 0 deletions api/gloo/gloo/v1/settings.proto
Original file line number Diff line number Diff line change
Expand Up @@ -829,6 +829,13 @@ message GatewayOptions {
// as a warning instead of an error. This will allow for eventually consistent workloads, but will also permit
// the accidental deletion of secrets being referenced, which would cause disruption in traffic.
google.protobuf.BoolValue warn_missing_tls_secret = 13;

// Configures the Gloo translation loop to send the final product of translation through Envoy
// validation mode. This has an negative impact on the total translation throughput, but it
// helps ensure the configuration will not be nacked when served to Envoy.
//
// This feature is not yet implemented.
google.protobuf.BoolValue full_envoy_validation = 14;
}

// If provided, the Gateway will perform [Dynamic Admission Control](https://kubernetes.io/docs/reference/access-authn-authz/extensible-admission-controllers/)
Expand Down
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