Skip to content

Commit

Permalink
No need to gather facts on localhost (kubernetes-sigs#5251)
Browse files Browse the repository at this point in the history
It's unnecessary and breaks when running from within a docker container:
```
An exception occurred during task execution. To see the full traceback, use -vvv. The error was: TimeoutError: Timer expired after 10 seconds
fatal: [localhost]: FAILED! => {"changed": false, "cmd": "/usr/sbin/udevadm info --query property --name /dev/mapper/vg00-root", "msg": "Timer expired after 10 seconds", "rc": 257}
```
  • Loading branch information
caruccio authored and k8s-ci-robot committed Oct 15, 2019
1 parent 932935e commit 03cac21
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions reset.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
- hosts: localhost
become: no
gather_facts: False
tasks:
- name: "Check ansible version >=2.7.8"
assert:
Expand Down

0 comments on commit 03cac21

Please sign in to comment.