美文网首页
ansible学习笔记

ansible学习笔记

作者: 烤玉米馒头 | 来源:发表于2019-03-25 10:28 被阅读0次

    inventory配置

    主机变量
    [atlanta]
    # http_port、maxRequestsPerChild都是变量,可以在paybook中使用
    host1 http_port=80 maxRequestsPerChild=808
    host2 http_port=303 maxRequestsPerChild=909
    
    组变量
    [atlanta]
    host1
    host2
    
    #[组名:vars],给整组设置变量
    [atlanta:vars]
    ntp_server=ntp.atlanta.example.com
    proxy=proxy.atlanta.example.com
    
    把一个组作为另一个组的子成员
    [atlanta]
    host1
    host2
    
    [raleigh]
    host2
    host3
    #[组名:children],使用children属性,southeast的成员只能为其他组名
    [southeast:children] 
    atlanta
    raleigh
    

    相关文章

      网友评论

          本文标题:ansible学习笔记

          本文链接:https://www.haomeiwen.com/subject/nitvvqtx.html