Skip to content
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
2 changes: 1 addition & 1 deletion mixer/v1/istio.mixer.v1.pb.html

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

2 changes: 1 addition & 1 deletion mixer/v1/mixer.pb.go

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

2 changes: 1 addition & 1 deletion mixer/v1/mixer.proto
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ message HeaderOperation {
}

// Expresses the routing manipulation actions to be performed on behalf of
// Mixer in response to a successful precondition check.
// Mixer in response to a precondition check.
message RouteDirective {
// Operations on the request headers.
repeated HeaderOperation request_header_operations = 1 [(gogoproto.nullable) = false];
Expand Down
8 changes: 5 additions & 3 deletions policy/v1beta1/cfg.pb.go

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

6 changes: 3 additions & 3 deletions policy/v1beta1/cfg.proto
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ message AttributeManifest {
// instance constructed using the 'RequestCountByService' instance.
//
// ```yaml
// - match: destination.service == "*"
// - match: match(destination.service.host, "*")
// actions:
// - handler: prometheus-handler
// instances:
Expand All @@ -119,7 +119,7 @@ message Rule {
//
// * an empty match evaluates to `true`
// * `true`, a boolean literal; a rule with this match will always be executed
// * `destination.service == ratings*` selects any request targeting a service whose
// * `match(destination.service.host, "ratings.*)` selects any request targeting a service whose
// name starts with "ratings"
// * `attr1 == "20" && attr2 == "30"` logical AND, OR, and NOT are also available
string match = 1;
Expand Down Expand Up @@ -225,7 +225,7 @@ message Action {
// params:
// value: 1
// dimensions:
// source: source.service
// source: source.name
// destination_ip: destination.ip
// ```
message Instance {
Expand Down
Loading