diff --git a/pkg/command/commands.go b/pkg/command/commands.go index 7fc802a..13a7568 100644 --- a/pkg/command/commands.go +++ b/pkg/command/commands.go @@ -3,8 +3,8 @@ package command type OperatorCommandType string const ( - OperatorCommandAppNameLabelKey string = "kubescape.io/app-name" // holds the app name label, on which to run the command (optional) - OperatorCommandNodeNameLabelKey string = "kubescape.io/node-name" // holds the node name label, on which to run the command (optional) + OperatorCommandAppNameLabelKey string = "kubescape.io/app-name" // holds the app name label, which should execute the command (optional) + OperatorCommandNodeNameLabelKey string = "kubescape.io/node-name" // holds the node name label, app running on this node name should execute the command (optional) // command types will be defined here OperatorCommandTypeResponse OperatorCommandType = "response"