55 ansible 变量

变量概述

1.变量

变量:以一个固定的字符串去表示一个不固定的值。 x = 12
shell中变量:
定义: Host=oldxu.com
使用:${Host}

Ansible中变量:
定义: Host=oldxu.com
使用:{{ Host }}

2.Ansible中定义变量分为如下三种方式

  1. 通过命令行进行变量定义
  2. 在play文件中进行定义变量
  3. 通过inventory在主机组或单个主机中设置变量

变量的优先级( 变量读取的顺序 )


1. 通过命令行进行变量定义

[root@manager ansible_variables]# cat var6.yml

- hosts: webservers
  tasks:
    - name: Install Rpm Packages "{{ test_packages }}"
      yum:
        name:
          - "{{ test_packages }}"
        state: present

[root@manager ansible_variables]# ansible-playbook var6.yml -e "test_packages=sl"


2.通过在play文件中进行定义变量


  • [root@manager ansible_variables]# cat var1.yml
- hosts: webservers
  vars: #定义变量关键字
    - web_packages: httpd
    - ftp_packages: vsftpd

  tasks:
    - name: Installed Rpm Packages "{{ web_packages }}" "{{ ftp_packages }}"
      yum:
        name:
          - "{{ web_packages }}"
          - "{{ ftp_packages }}"
        state: present

注意:vars关键字定义的变量,无法与其他的playbook进行共享。

  • 二 (vars_files来进行定义变量)
[root@manager ansible_variables]# cat test.yml
web_packages: httpd-tools
ftp_packages: vsftpd

[root@manager ansible_variables]# cat var1.yml

- hosts: webservers
  vars_files: test.yml

  tasks:
    - name: Installed Rpm Packages "{{ web_packages }}" "{{ ftp_packages }}"
      yum:
        name:
          - "{{ web_packages }}"
          - "{{ ftp_packages }}"
        state: present

[root@manager ansible_variables]# cat var2.yml

- hosts: webservers
  vars_files: test.yml

  tasks:
    - name: Installed Rpm Packages "{{ web_packages }}" "{{ ftp_packages }}"
      yum:
        name:
          - "{{ web_packages }}"
          - "{{ ftp_packages }}"
        state: present

3. 通过inventory在主机组或单个主机中设置变量

[root@manager ansible_variables]# mkdir host_vars
[root@manager ansible_variables]# mkdir group_vars
[root@manager ansible_variables]# cat group_vars/webservers
web_packages: wget
ftp_packages: tree

[root@manager ansible_variables]#cat var4.yml

- hosts: webservers
  tasks:
    - name: Install Rpm Packages "{{ web_packages }}" "{{ ftp_packages }}"
      yum:
        name:
          - "{{ web_packages }}"
          - "{{ ftp_packages }}"
        state: present

[root@manager ansible_variables]# cat group_vars/all

web_packages: nfs-utils
ftp_packages: rsync

[root@manager ansible_variables]# cat var5.yml

- hosts: db
  tasks:
    - name: Install Rpm Packages "{{ web_packages }}" "{{ ftp_packages }}"
      yum:
        name:
          - "{{ web_packages }}"
          - "{{ ftp_packages }}"
        state: present

变量的查找顺序:

设定同一个变量,不同的值,去测试,看谁优先被使用。

filename=
  1)在plabook中定义vars变量
  2)在playbook中定义vars_files变量
  3)在host_vars中定义变量
  4)在group_vars中定义变量
  5)通过执行命令传递变量

变量的查找优先级:--------------->>>

1.外置传参 -e
2.playbook
vars_files
vars
3.host_vars
4.group_vars/组名
4.group_vars/all


4.NFS ansible搭建

[root@manager ansible_variables]#cat group_vars/all

share_dir: /data3

[root@manager ansible_variables]# cat var8.yml

- hosts: webservers
  tasks:

    - name: Installed NFS Server
      yum:
        name: nfs-utils

    - name: Configure NFS Server  #配置文件中使用 了share_dir #共享的目录/data3
      template:      
       #copy:模块 变量描述也拷贝 //  template:模块 支持拷贝变量的配置文件
        src: ./exports.j2
        dest: /etc/exports
      notify: Restart NFS Server

    - name: Create Share Directory	     #创建共享的目录使用share_dir  /data3
      file:
        path: "{{ share_dir }}"
        state: directory
        owner: www
        group: www
        mode: 755

    - name: Started NFS Server
      systemd:
        name: nfs
        state: started
        enabled: yes

  handlers:
    - name: Restart NFS Server
      systemd:
        name: nfs
        state: restarted

- hosts: db
  tasks:
    - name: Client Mount NFS Server
      mount:
        src: 172.16.1.7:{{ share_dir }}
        path: /ansible_mount
        fstype: nfs
        state: mounted

5.register变量注册

将执行的结果存储至变量中,后期可以通过结果进行判断的操作。

[root@manager ansible_variables]# cat var9.yml

- hosts: webservers
  tasks:
    - name: Get Network Status
      shell: netstat -lntp
      register: System_Net
      #将shell命令的执行输出结果,存储至System_Net变量中

    - name: Print Variables
      debug:
        msg: "{{ System_Net.stdout_lines }}"

{{ System_Net }} 能看到变量的所有信息

{{ System_Net.stderr }} #能捕获到错误,如果没有就是空,如果有错误就会限制在终端窗口


6.facts变量(机器实现定义的)

(非常强大,可以根据不同的主机生成不同配置文件。是灵魂)

ansible location -m setup 采集主机信息
ansible locathost -m setup > dco.txt 方便查看

实战一、根据IP地址生成不同的Redis配置

web01  bind 172.16.1.7
web02  bind 172.16.1.8 

[root@manager ansible_variables]# cat redis.yml

- hosts: webservers
  tasks:

    - name: Installed Redis Server
      yum:
        name: redis
        state: present

    - name: Configure Redis Server
      template:
        src: ./redis.conf.j2
        dest: /etc/redis.conf
      notify: Restart Redis Server

    - name: Started Redis Server
      systemd:
        name: redis
        state: started
        enabled: yes

  handlers:
    - name: Restart Redis Server
      systemd:
        name: redis
        state: restarted

[root@manager ansible_variables]# cat redis.conf.j2

bind 127.0.0.1 {{ ansible_eth1.ipv4.address }}

实战二、根据CPU核心生成不同的Nginx配置

web01 1核心 1GB	  2
web02 2核心 2GB    4

cpu核心那个变量

[root@manager ansible_variables]# cat nginx.yml

- hosts: webservers
  tasks:
    - name: Configure  Nginx.conf
      template:
        src: ./nginx.conf.j2
        dest: /tmp/nginx.conf

[root@manager ansible_variables]# cat nginx.conf.j2
worker {{ ansible_processor_vcpus * 2 }};

实战三、根据主机内存生成不同的Memcached配置 ( 使用物理内存的一半 )

web01 1G	512
web02 2G	1024
web03 4G	2048

1.找到物理内存的变量
2.将变量除以2

[root@manager ansible_variables]# yum install memcached -y
[root@manager ansible_variables]# cp /etc/sysconfig/memcached ./memcached.j2
[root@manager ansible_variables]# cat memcached.j2

PORT="11211"
USER="memcached"
MAXCONN="1024"
CACHESIZE="{{ ansible_memtotal_mb //2 }}"
OPTIONS=""

[root@manager ansible_variables]# cat memcached.yml

- hosts: webservers
  tasks:
    - name: Installed Memcached Server
      yum:
        name: memcached
        state: present

    - name: Configure Memcached Server
      template:
        src: memcached.j2
        dest: /etc/sysconfig/memcached
      notify: Restart Memcached Server

    - name: Started Memcached Server
      systemd:
        name: memcached
        state: started
        enabled: yes

  handlers:
    - name: Restart Memcached Server
      systemd:
        name: memcached
        state: restarted

实战四、根据主机名称生成不同的zabbix配置

zabbix: https://mirror.tuna.tsinghua.edu.cn/zabbix/zabbix/4.0/rhel/7/x86_64/zabbix-agent-4.0.0-2.el7.x86_64.rpm

[root@manager ansible_variables]#cat zabbix_agent.yml

- hosts: all
  tasks:
    - name: Installed ZabbixAgent
      yum:
        name: https://mirror.tuna.tsinghua.edu.cn/zabbix/zabbix/4.0/rhel/7/x86_64/zabbix-agent-4.0.0-2.el7.x86_64.rpm
        state: present

    - name: Configure ZabbixAgent
      template:
        src: ./zabbix_agentd.conf.j2
        dest: /etc/zabbix/zabbix_agentd.conf
      notify: Restart ZabbixAgent

    - name: Started ZabbixAgent
      systemd:
        name: zabbix-agent
        state: started
        enabled: yes

  handlers:
    - name: Restart ZabbixAgent
      systemd:
        name: zabbix-agent
        state: restarted

[root@manager ansible_variables]# grep "^Hostname" zabbix_agentd.conf.j2
Hostname={{ ansible_hostname }}

7.facts优化:

facts变量开启会影响playbook运行的效率? 但是关闭又会造成无法提取被控端的状态。 最佳的方案使用缓存来解决。 ( redis )

没有使用缓存时的时间: 4台机器同时操作: 20台

real 0m28.738s
user 0m12.064s
sys 0m3.725s

增加redis缓存:

real 0m6.345s
user 0m3.021s
sys 0m1.039s

1.安装一个redis   172.16.1.51 安装过了,就不要需要安装,直接使用就行了。
2.配置ansible配置文件,让其支持redis缓存:	

[root@manager ansible_variables]# cat ansible.cfg
[defaults]
inventory = ./hosts

gathering = smart
fact_caching_timeout = 86400
fact_caching = redis
fact_caching_connection = 172.16.1.7:6379

yum install python-pip
pip install redis
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值