gather_facts
ゲームレベル以外の方法はありませんか?永久に無効にしたい場合は、ansible.cfg
マニフェストファイルまたはマニフェストファイルで実行する方法はありますか?
答え1
からansible.cfg
:
# plays will gather facts by default, which contain information about
# the remote system.
#
# smart - gather by default, but don't regather if already gathered
# implicit - gather by default, turn off with gather_facts: False
# explicit - do not gather by default, must say gather_facts: True
gathering = explicit
答え2
gather_facts
ゲームレベル以外の方法はありませんか?永久に無効にしたい場合は、方法はありませんかansible.cfg
?
もちろんです。 Ansible文書によるとAnsible 構成設定関連構成ファイルそしてDEFAULT_GATHERING
置くgathering = explicit
。
基本
implicit
選ぶ
implicit
gather_facts: False
設定しないと、キャッシュプラグインは無視され、再生するたびにファクトが収集されます。explicit
演劇側から直接要請しない限り、事実は収集されません。