ansible动态主机清单案例

linux ansible动态主机清单案例

使用动态清单模板,修改其内容,要求如下:
(1)node1是test主机组的成员,其中test主机组可以使用变量:
aa=11
bb=22
(2)node2和node3是prod主机组的成员,其中prod主机组可以使用的变量:
cc=33
dd=44
(3)node1还可以使用的变量:nodevar=xxx1
(4)node2还可以使用的变量:nodevar=xxx2
(5)node3还可以使用的变量:nodevar=xxx3
(6)撰写一个test.yml的playbook,要求所有的受控主机输出变量nodevar的值

[student@ansible ansible]$ ls
ansible.cfg  inventory  inventory.php  inventory.py  README.md  roles  test1.yaml
[student@ansible ansible]$ vim inventory.py 
#!/usr/bin/env python3

'''
Example custom dynamic inventory script for Ansible, in Python.
'''

import os
import sys
import argparse
import json

class ExampleInventory(object):

    def __init__(self):
        self.inventory = {}
        self.read_cli_args()

        # Called with `--list`

你可能感兴趣的:(ansible,linux,php)