Skip to content

Commit

Permalink
tests: reduce verbosity of ansible-playbook
Browse files Browse the repository at this point in the history
‹-vvv› outputs »a lot« of debugging information that can be useful when
debugging tmt or ansible-related issues specific to the Testing Farm
tests.

‹-vv› should provide enough details for day-to-day use.

If need be, this can be always reverted, but there's not much benefit in
having this on by default.

Signed-off-by: Matej Focko <[email protected]>
  • Loading branch information
mfocko committed Dec 16, 2024
1 parent 5f61e25 commit da5b5cb
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions plans/deployment.fmf
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@ discover:
prepare:
- how: ansible
playbook: playbooks/oc-cluster-user.yml
extra-args: "-vvv --extra-vars user=tmt"
extra-args: "-vv --extra-vars user=tmt"
- how: ansible
playbook: playbooks/oc-cluster-setup.yml
extra-args: "-vvv --extra-vars user=tmt"
extra-args: "-vv --extra-vars user=tmt"
- how: ansible
playbook: playbooks/oc-cluster-run.yml
extra-args: "-vvv --extra-vars user=tmt"
extra-args: "-vv --extra-vars user=tmt"
- how: ansible
playbook: playbooks/oc-cluster-tests-setup.yml
extra-args: "-vvv"
extra-args: "-vv"

/local:
summary: Run packit-service deployment test on a local machine managed by tmt
Expand All @@ -54,16 +54,16 @@ discover:
prepare:
- how: ansible
playbook: playbooks/oc-cluster-user.yml
extra-args: "-vvv --extra-vars user=tmt"
extra-args: "-vv --extra-vars user=tmt"
- how: ansible
playbook: playbooks/oc-cluster-setup.yml
extra-args: "-vvv --extra-vars user=tmt"
extra-args: "-vv --extra-vars user=tmt"
- how: ansible
playbook: playbooks/oc-cluster-run.yml
extra-args: "-vvv --extra-vars @./secrets/openshift-local-pull-secret.yml --extra-vars user=tmt"
extra-args: "-vv --extra-vars @./secrets/openshift-local-pull-secret.yml --extra-vars user=tmt"
- how: ansible
playbook: playbooks/oc-cluster-tests-setup.yml
extra-args: "-vvv"
extra-args: "-vv"

/vagrant:
summary: Run packit-service deployment test on a vagrant machine already up and running
Expand Down

0 comments on commit da5b5cb

Please sign in to comment.