サーチ…


静的在庫を持つグループ変数

ホストの目的(役割)と地理またはデータセンターの場所(該当する場合)に基づいてグループを定義することをお勧めします。

ファイルのinventory/production

[rogue-server]
192.168.1.1

[atlanta-webservers]
www-atl-1.example.com
www-atl-2.example.com

[boston-webservers]
www-bos-1.example.com
www-bos-2.example.com

[atlanta-dbservers]
db-atl-1.example.com
db-atl-2.example.com

[boston-dbservers]
db-bos-1.example.com

# webservers in all geos
[webservers:children]
atlanta-webservers
boston-webservers

# dbservers in all geos
[dbservers:children]
atlanta-dbservers
boston-dbservers

# everything in the atlanta geo
[atlanta:children]
atlanta-webservers
atlanta-dbservers

# everything in the boston geo
[boston:children]
boston-webservers
boston-dbservers

ファイルgroup_vars/all

---
apache_port: 80

group_vars/atlanta-webserversファイル

---
apache_port: 1080

group_vars/boston-webserversファイル

---
apache_port: 8080

ファイルhost_vars/www-bos-2.example.com

---
apache_port: 8111

ansible-playbook -i inventory/hosts install-apache.yml実行した後ansible-playbook -i inventory/hosts install-apache.yml (プレイブックのホストはhosts: all

ポートは

住所
192.168.1.1 80
www-atl-1.example.com 1080
www-atl-2.example.com 1080
www-bos-1.example.com 8080
www-bos-2.example.com 8111


Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow