FROM centos:7
RUN yum check-update; \
yum install -y gcc libffi-devel python3 epel-release; \
yum install -y python3-pip; \
yum install -y wget; \
yum clean all
RUN pip3 install --upgrade pip; \
pip3 install "ansible"; \
wget -q https://raw.githubusercontent.com/ansible-collections/azure/dev/requirements-azure.txt; \
pip3 install -r requirements-azure.txt; \
rm requirements-azure.txt; \
ansible-galaxy collection install azure.azcollection \
WORKDIR /github
CMD ["/usr/sbin/init"]C:.
└───bla_product
└───core
├───ansible
│ ├───inventories
│ │ ├───production
│ │ ├───staging
│ │ └───test
│ │ ├───cloud
│ │ └───onpremis
│ │ └───domain.com
│ │ │ lab_x.yml
│ │ │
│ │ └───group_vars
│ │ windows.yml
│ │
│ ├───playbooks
│ └───roles---
all:
children:
root:
children:
center:
children:
appservers:
hosts:
centeriis.domain.com:
ansible_host: 200.10.0.100
qservers:
hosts:
centerq.domain.com:
ansible_host: 200.10.0.101
dbservers:
hosts:
centerdb.domain.com:
ansible_host: 200.10.0.102
serverfarms:
hosts:
children:
gateways:
hosts:
south:
children:
brooklyn:
hosts:
srv1.domain.com:
ansible_host: 200.10.0.103
children:
endpoints:
hosts:
client1.domain.com:
ansible_host: 200.10.0.105
client2.domain.com:
ansible_host: 200.10.0.106
north:
children:
newyork:
hosts:
srv2.domain.com:
ansible_host: 200.10.0.104
children:
endpoints:
hosts:
client3.domain.com:
ansible_host: 200.10.0.107windows.yml文件包含引用所有主机的连接详细信息,因为它们都是Windows主机:---
ansible_connection: winrm
ansible_user: domain\user
ansible_password: passwordansible all -i lab_r.yml -m win_ping结果:[DEPRECATION WARNING]: Ansible will require Python 3.8 or newer on the controller starting with Ansible 2.12. Current version: 3.6.8 (default, Nov 16 2020, 16:55:22) [GCC
4.8.5 20150623 (Red Hat 4.8.5-44)]. This feature will be removed from ansible-core in version 2.12. Deprecation warnings can be disabled by setting
deprecation_warnings=False in ansible.cfg.
centeriis.domain.com | UNREACHABLE! => {
"changed": false,
"msg": "[Errno None] Unable to connect to port 22 on 200.10.0.100",
"unreachable": true
}ansible windows.yml -i lab_r.yml -m win_ping会给出如下结果:[DEPRECATION WARNING]: Ansible will require Python 3.8 or newer on the controller starting with Ansible 2.12. Current version: 3.6.8 (default, Nov 16 2020, 16:55:22) [GCC
4.8.5 20150623 (Red Hat 4.8.5-44)]. This feature will be removed from ansible-core in version 2.12. Deprecation warnings can be disabled by setting
deprecation_warnings=False in ansible.cfg.
[WARNING]: Could not match supplied host pattern, ignoring: windows.yml
[WARNING]: No hosts matched, nothing to do发布于 2021-06-30 18:46:30
库存中没有一个主机位于一个名为"windows“的组中,因此您的windows.yml从未被使用过,Ansible回到了默认协议ssh中。
如果您只有Windows,最简单的解决方案就是将连接信息放入all.yml中。
https://serverfault.com/questions/1068201
复制相似问题