如何避免在 hosts.yaml 中重复主机 IP 地址?

How can I avoid repeating host IP address in hosts.yaml?

我喜欢给我的主机取昵称(例如 pi-master),但也指定他们的 IP。如果我想将同一主机列为两个组的一部分,如何避免在多个地方重复主机 IP?在上面的示例中,我希望 pi-master 主机同时属于 masternfs 组。

---
master:
  hosts:
    pi-master:
      ansible_host: 192.168.1.100

node:
  hosts:
    pi-worker1:
      ansible_host: 192.168.1.101
    pi-worker2:
      ansible_host: 192.168.1.102

nfs:
  hosts:
    pi-master:
      ansible_host: 192.168.1.100
    pi-worker1:
      ansible_host: 192.168.1.101

您使用 the documents 所述的“children”。

虽然它很“丑陋”,但在你的例子中你可以通过以下方式实现:

---
host-pi-master:
  hosts:
    pi-master:
      ansible_host: 192.168.1.100

host-pi-worker1:
  hosts:
    pi-worker1:
      ansible_host: 192.168.1.101

host-pi-worker2:
  hosts:
    pi-worker2:
      ansible_host: 192.168.1.102

master:
  children:
    host-pi-master:

node:
  children:
    host-pi-worker1:
    host-pi-worker2:

nfs:
  children:
    host-pi-master:
    host-pi-worker1:

答案很简单:您不需要!我什至会更进一步:你不应该重复,因为最后只会保留一个值。

主机就是主机。无论您在哪里定义它以及编写多少引用,它都将始终是唯一的并且是 all default top group. The resulting vars for that specific host are a combination of the vars defined anywhere. For how conflicts are resolved see how variables are merged and ansible precedence rules

的一部分

在下面的示例中,我引用了同一个主机 3 次,在每个位置都添加了一个新变量并覆盖了一个。

testinv.yml

---
group_a:
  hosts:
    my_host:
      ansible_host: 10.10.10.1

group_b:
  hosts:
    my_host:
      ansible_python_interpreter: /usr/bin/python3

group_c:
  hosts:
    my_host:
      ansible_host: custom.host.com
      ansible_user: test_user

下面是命令ansible-inventory -i testinv.yml --list的结果。如您所见,无论我将在何种上下文中使用它,所有三个变量都会对我的主机产生影响,并且在所有情况下都将使用最新的覆盖值

{
    "_meta": {
        "hostvars": {
            "my_host": {
                "ansible_host": "custom.host.com",
                "ansible_python_interpreter": "/usr/bin/python3",
                "ansible_user": "test_user"
            }
        }
    },
    "all": {
        "children": [
            "group_a",
            "group_b",
            "group_c",
            "ungrouped"
        ]
    },
    "group_a": {
        "hosts": [
            "my_host"
        ]
    },
    "group_b": {
        "hosts": [
            "my_host"
        ]
    },
    "group_c": {
        "hosts": [
            "my_host"
        ]
    }
}

我建议您避免使用此类非常容易出错的声明。在顶部 all 组中为您的主机定义所有变量,或者(恕我直言,最佳解决方案)使用 `host_vars/<your_host>.yaml file

如果您真的想将所有这些保存在一个文件中,在您的上下文中这可能会给出:

---
all:
  hosts:
    pi-master:
      ansible_host: 192.168.1.100
    pi-worker1:
      ansible_host: 192.168.0.101
    pi-worker2:
      ansible_host: 192.168.1.102
  
master:
  hosts:
    pi-master:

node:
  hosts:
    pi-worker1:
    pi-worker2:

nfs:
  hosts:
    pi-master:
    pi-worker1:

(您还可以决定按照它在文件中出现的顺序在第一个主机引用中声明变量。声明 all 默认组只是“强制”您将这些引用写在文件。)