Skip to content

Commit

Permalink
update charts
Browse files Browse the repository at this point in the history
Signed-off-by: kevindiu <[email protected]>
  • Loading branch information
kevindiu committed Jun 29, 2023
1 parent 1f7655d commit 0d131ad
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions charts/vald-helm-operator/crds/valdrelease.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3748,11 +3748,11 @@ spec:
distance_filters:
type: array
items:
type: string
type: object
object_filters:
type: array
items:
type: string
type: object
gateway_client:
type: object
properties:
Expand Down
4 changes: 2 additions & 2 deletions charts/vald/values.go
Original file line number Diff line number Diff line change
Expand Up @@ -274,10 +274,10 @@ type EgressFilter struct {
Client *config.GRPCClient `json:"client,omitempty"`

// distance egress vector filter targets
DistanceFilters []string `json:"distance_filters,omitempty"`
DistanceFilters []config.DistanceFilterConfig `json:"distance_filters,omitempty"`

// object egress vector filter targets
ObjectFilters []string `json:"object_filters,omitempty"`
ObjectFilters []config.ObjectFilterConfig `json:"object_filters,omitempty"`
}

// EnvItems
Expand Down
4 changes: 2 additions & 2 deletions charts/vald/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -6139,12 +6139,12 @@
"distance_filters": {
"type": "array",
"description": "distance egress vector filter targets",
"items": { "type": "string" }
"items": { "type": "object" }
},
"object_filters": {
"type": "array",
"description": "object egress vector filter targets",
"items": { "type": "string" }
"items": { "type": "object" }
}
}
},
Expand Down
4 changes: 2 additions & 2 deletions charts/vald/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1407,10 +1407,10 @@ gateway:
# @schema {"name": "gateway.filter.gateway_config.egress_filter.client", "alias": "grpc.client"}
# gateway.filter.gateway_config.egress_filter.client -- gRPC client config for egress filter (overrides defaults.grpc.client)
client: {}
# @schema {"name": "gateway.filter.gateway_config.egress_filter.object_filters", "type": "array", "items": {"type": "string"}}
# @schema {"name": "gateway.filter.gateway_config.egress_filter.object_filters", "type": "array", "items": {"type": "object"}}
# gateway.filter.gateway_config.egress_filter.object_filters -- object egress vector filter targets
object_filters: []
# @schema {"name": "gateway.filter.gateway_config.egress_filter.distance_filters", "type": "array", "items": {"type": "string"}}
# @schema {"name": "gateway.filter.gateway_config.egress_filter.distance_filters", "type": "array", "items": {"type": "object"}}
# gateway.filter.gateway_config.egress_filter.distance_filters -- distance egress vector filter targets
distance_filters: []

Expand Down
4 changes: 2 additions & 2 deletions k8s/operator/helm/crds/valdrelease.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3748,11 +3748,11 @@ spec:
distance_filters:
type: array
items:
type: string
type: object
object_filters:
type: array
items:
type: string
type: object
gateway_client:
type: object
properties:
Expand Down

0 comments on commit 0d131ad

Please sign in to comment.