Description
Add simple validation to the CLI validate command.
Something what we have here:
|
if err := a.actionValidator.Validate(renderOutput.Action, action.Namespace); err != nil { |
|
return status, errors.Wrap(err, "while validating rendered Action") |
|
} |
We can simplify it as we will work on not rendered data, so there may be some problem with that we have our own properties (superset).
Description
Add simple validation to the CLI validate command.
Something what we have here:
capact/internal/k8s-engine/controller/action_service.go
Lines 431 to 433 in aaeabac
We can simplify it as we will work on not rendered data, so there may be some problem with that we have our own properties (superset).