File tree 2 files changed +2
-0
lines changed
2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ const (
12
12
OperatorCommandTypeCreateRegistry OperatorCommandType = "CreateRegistry"
13
13
OperatorCommandTypeUpdateRegistry OperatorCommandType = "UpdateRegistry"
14
14
OperatorCommandTypeDeleteRegistry OperatorCommandType = "DeleteRegistry"
15
+ OperatorCommandTypeCheckRegistry OperatorCommandType = "CheckRegistry"
15
16
)
16
17
17
18
// ResponseCommand
Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ type OperatorCommandStatus struct {
41
41
CompletedAt * metav1.Time `json:"completedAt,omitempty"` // CompletedAt is the time at which the command was completed
42
42
Executer string `json:"executer,omitempty"` // Executer is the entity that executed the command
43
43
Error * OperatorCommandStatusError `json:"error,omitempty"` // Error is the error that occurred during the execution of the command (if any)
44
+ Payload []byte `json:"payload,omitempty"` // Payload is the response payload from execution of the command (if any)
44
45
}
45
46
46
47
type OperatorCommandStatusError struct {
You can’t perform that action at this time.
0 commit comments