我试图在ubuntu 14.04中使用ansible playbook设置和配置起搏器。
截至目前,我只是在1节点测试它。因此在hosts文件中我只保留了该节点的信息
"Hello Worl"
在剧本Yaml文件中我尝试安装以及配置起搏器
[hostname]
1.2.3.4 ansible_ssh_private_key_file=/home/ubuntu/test.pem
我的节点正确安装。但是对于配置,我需要编辑/etc/corosync/corosync.conf,其中我需要指定我的主机地址来代替bindnetaddress。
假设我在[hostname]部分下面有多个条目有任何方式在ansible我可以在我的YAML文件中循环它们
我正在尝试使用sed命令来替换IP。但是,请你帮忙解决如何循环或打印Ips的问题。
我试过这个
- hosts: all
sudo: yes
tasks:
- name: install pacemaker
apt: name=pacemaker state=present
- name: install corosync
apt: name=corosync state=present
- name: install fence-agents
apt: name=fence-agents state=present
#- copy: src=corosync_start dest=/etc/default/corosync
#- shell: update-rc.d -f pacemaker remove
#- shell: update-rc.d pacemaker start 50 1 2 3 4 5 . stop 01 0 6 .
你能告诉我应该怎么写
答案 0 :(得分:5)
很抱歉让您对我的评论感到困惑, 假设您有库存文件
[ALL]
host1.com
host2.com
您的yaml文件应如下所示(使用with_items)
- hosts: all
sudo: yes
tasks:
- name: install pacemaker
apt: name=pacemaker state=present
- name: install corosync
apt: name=corosync state=present
- name: install fence-agents
apt: name=fence-agents state=present
- copy: src=corosync_start dest=/etc/default/corosync
- lineinfile: dest=/etc/selinux/config line="my host {{ item }}"
with_items: groups['ALL']
请记住它会为每个主机创建每一行 我认为您正在寻找的是实际上没有循环但获取当前主机名(ansible_hostname):
- hosts: all
sudo: yes
gather_facts: yes
tasks:
- name: install pacemaker
apt: name=pacemaker state=present
- name: install corosync
apt: name=corosync state=present
- name: install fence-agents
apt: name=fence-agents state=present
- copy: src=corosync_start dest=/etc/default/corosync
- lineinfile: dest=/etc/selinux/config line="my host {{ ansible_hostname }}"
答案 1 :(得分:3)
你可以使用ansible创建的这个官方模块。 喜欢这个
- debug:
msg: "{{ item }}"
with_inventory_hostnames:
- all
参考链接
http://docs.ansible.com/ansible/latest/playbooks_loops.html#looping-over-the-inventory
答案 2 :(得分:1)
这些方面应该有效:
- debug: msg="host is {{ item }}"
with_items: groups['app_servers']
这将为您提供清单中定义的每个主机的名称。如果你想要一个Ansible事实提供的FQDN(或主机的任何其他事实),那么你想做这样的事情:
- debug: msg="host is {{ hostvars[item]['inventory_hostname'] }}"
with_items: "{{ groups['app_servers'] }}"