You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This use case is for debug. For example I want to run manually an operation (a.k.a. Ansible playbook). In order to run this operation I must run all DAG operation predecessors.
With the tdp deploy --targets ... command we can run a deployment to a list of targets so we only need direct operation's predecessors, not all, only direct ones. To get them we can use the pred property of networkx.
Here an example snippet to print a tdp deploy command with all ranger_admin_config direct operation's predecessors:
This use case is for debug. For example I want to run manually an operation (a.k.a. Ansible playbook). In order to run this operation I must run all DAG operation predecessors.
With the
tdp deploy --targets ...
command we can run a deployment to a list of targets so we only need direct operation's predecessors, not all, only direct ones. To get them we can use the pred property of networkx.Here an example snippet to print a
tdp deploy
command with allranger_admin_config
direct operation's predecessors:Outputs:
After running this
tdp deploy
command we can run manually, withansible-playbook
command, theranger_admin_config
playbook.The text was updated successfully, but these errors were encountered: