-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
752155d
commit dc22124
Showing
59 changed files
with
1,292 additions
and
1,211 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ yq 4.27.2 | |
helm 3.9.2 | ||
kubectl 1.24.3 | ||
kustomize 4.5.5 | ||
kind 0.14.0 | ||
kind 0.15.0 | ||
jb 0.5.1 | ||
tanka 0.22.1 | ||
tilt 0.30.7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
syntax = "proto3"; | ||
|
||
package aperture.policy.wrappers.v1; | ||
|
||
import "aperture/policy/decisions/v1/decisions.proto"; | ||
|
||
message LoadShedDecsisionWrapper { | ||
// Load Shed Decision | ||
policy.decisions.v1.LoadShedDecision load_shed_decision = 1; | ||
// The index of Component in the Circuit. | ||
int64 component_index = 2; | ||
// Name of the Policy. | ||
string policy_name = 3; | ||
// Hash of the entire Policy spec. | ||
string policy_hash = 4; | ||
} | ||
|
||
message TokensDecisionWrapper { | ||
// Tokens Decision | ||
policy.decisions.v1.TokensDecision tokens_decision = 1; | ||
// The index of Component in the Circuit. | ||
int64 component_index = 2; | ||
// Name of the Policy. | ||
string policy_name = 3; | ||
// Hash of the entire Policy spec. | ||
string policy_hash = 4; | ||
} | ||
|
||
message RateLimiterDecisionWrapper { | ||
// Rate Limiter Decision | ||
policy.decisions.v1.RateLimiterDecision rate_limiter_decision = 1; | ||
// The index of Component in the Circuit. | ||
int64 component_index = 2; | ||
// Name of the Policy. | ||
string policy_name = 3; | ||
// Hash of the entire Policy spec. | ||
string policy_hash = 4; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.