"ansible.cfg" 또는 매니페스트 파일에서 "gather_facts"를 끄십시오.

"ansible.cfg" 또는 매니페스트 파일에서 "gather_facts"를 끄십시오.

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

선택하다

  • implicitgather_facts: False설정하지 않으면 캐시 플러그인이 무시되며 재생할 때마다 사실이 수집됩니다.
  • explicit연극 측에서 직접 요청하지 않는 이상 사실은 수집되지 않습니다.

관련 정보