Skip to content

Commit

Permalink
fix: add cluster definition to MutatePod RPC call
Browse files Browse the repository at this point in the history
Signed-off-by: Leonardo Cecchi <[email protected]>
  • Loading branch information
leonardoce committed Jan 18, 2024
1 parent 7a71181 commit 2258292
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion proto/operator.proto
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,13 @@ service Operator {
}

message OperatorMutatePodRequest {
// This field is REQUIRED. Value of this field is the JSON
// serialization of the Cluster corresponding to the Pod being applied
string cluster_definition = 1;

// This field is REQUIRED. Value of this field is the JSON
// serialization of the Pod that is being applied
string definition = 1;
string pod_definition = 2;
}

message OperatorMutatePodResult {
Expand Down

0 comments on commit 2258292

Please sign in to comment.