Closed7

Ansible入門

moshmosh

ホストグループの設定はインベントリと呼ばれる

inventry.yaml
webservers:
  hosts:
    foo.example.com:
    bar.example.com:
dbservers:
  hosts:
    one.example.com:
    two.example.com:
    three.example.com:

以下のようにコマンドを実行するとインベントリで指定したホストグループに対してexample.yamlを実行できる。

ansible-playbook example.yaml -i inventory.yaml

ポート指定もできる

atlanta:
  hosts:
    host1:
      http_port: 80
      maxRequestsPerChild: 808
    host2:
      http_port: 303
      maxRequestsPerChild: 909

https://docs.ansible.com/ansible/latest/inventory_guide/intro_inventory.html

このスクラップは1ヶ月前にクローズされました