TOSIT-IO / tdp-lib

Python library to configure, manage and deploy TDP
Apache License 2.0
4 stars 8 forks source link

The `--filter` option does not work. #623

Closed SteBaum closed 2 weeks ago

SteBaum commented 3 weeks ago

Example: if you just want to launch all restart operations. The option tdp plan dag --filter restart returns:

...
raise NoOperationMatchError(
tdp.core.models.deployment_model.NoOperationMatchError: Combination of parameters resulted into an empty list of Operations.
rpignolet commented 3 weeks ago

If you want to restart all components: tdp plan dag --restart --filter "*restart*"

SteBaum commented 3 weeks ago

If you want to restart all components: tdp plan dag --restart --filter "*restart*"

Yes thank you it works, but it should be given as example in the description because you cannot guess it at first.