認識 Ansible

大綱


簡介


安裝

  • pip install ansible

    • pip3 install ansible
  • yum install ansible

  • apt-get install ansible

  • apk add ansible


常用模組

ping

shell / command

file

yum

systemd / service

template / copy

debug


常用模組 - ping


常用模組 - shell / command


常用模組 - file


常用模組 - yum


常用模組 - systemd / service


常用模組 - template / copy


常用模組 - debug / register


資料夾結構


結語

  • 選擇適合的
    • ansible ad-hoc
      • ansible gitlab -m ping
      • ansible gitlab -m shell -a 'rm -rf /'
    • playbook
    • role
    • collection
    • shell script
    • python script
    • others