From 2492dba8ebbd98f1da02a9e59d05e5a76beac8e6 Mon Sep 17 00:00:00 2001 From: Leonardo Cecchi Date: Thu, 18 Jan 2024 13:30:06 +0100 Subject: [PATCH] fix: add cluster definition to MutatePod RPC call (#10) Signed-off-by: Leonardo Cecchi --- proto/operator.proto | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/proto/operator.proto b/proto/operator.proto index 4e66edd..5f72364 100644 --- a/proto/operator.proto +++ b/proto/operator.proto @@ -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 {