演示:准备好Rocky linux 9.4
https://developer.aliyun.com/mirror/
OS镜像---发行版:rockylinux---发行版:9.4(x86_64-minimal)---下载

1、修改主机名
# hostnamectl set-hostname Rocky

2、配置静态IP地址(修改IPv4地址即可)
# vi /etc/NetworkManager/system-connections/ens33.nmconnection 
[ipv4]
address1=192.168.58.20/24,192.168.58.2
dns=8.8.8.8;114.114.114.114
method=manual

加载网卡配置
# nmcli connection reload
关闭网卡连接
# nmcli connection down ens33 
开启网卡连接
# nmcli connection up ens33 

3、开启ssh远程(添加这一行)
# vi /etc/ssh/sshd_config
#PermitRootLogin prohibit-password
PermitRootLogin yes

重启服务
# systemctl restart sshd

安装软件
# yum install vim bash-completion python3-pip

安装ansible
# pip install ansible

注意:
如果你需要 Ansible 的完整功能集,包括命令行工具和额外的插件、模块,那么应该使用 pip install ansible。
如果你只需要 Ansible 的核心引擎,或者你想要一个更轻量级的安装,那么应该使用 pip install ansible-core

查看python版本
# python --version
Python 3.9.18

查看ansible版本
# ansible --version
ansible [core 2.15.12]
  config file = None
  configured module search path = ['/root/.ansible/plugins/modules', '/usr/share/ansible/plugins/modules']
  ansible python module location = /usr/local/lib/python3.9/site-packages/ansible
  ansible collection location = /root/.ansible/collections:/usr/share/ansible/collections
  executable location = /usr/local/bin/ansible
  python version = 3.9.18 (main, Jan 24 2024, 00:00:00) [GCC 11.4.1 20231218 (Red Hat 11.4.1-3)] (/usr/bin/python3)
  jinja version = 3.1.4
  libyaml = True

关于anisble版本变化:
1、在 Ansible 2.10 之前,Ansible-core 指的是 Ansible 的核心模块和功能,包括核心模块库和基本的操作、插件等。
2、从 Ansible 2.10 之后(包含2.10),python要在3.8或者更高版本,核心功能被整合到一个默认的核心集合(core collection)中。这个集合包括了 Ansible 的基础功能和模块,以及一些核心的插件和模块。
3、使用集合的方式使得 Ansible 可以更灵活地管理模块和功能,用户可以通过安装不同的集合来扩展 Ansible 的功能,也可以更新集合而不必等待 Ansible 的全新版本发布。

一、Collection

Collections官方文档:https://galaxy.ansible.com/ui/

查看已安装的集合
# ansible-galaxy collection list

安装扩展模块(安装collection),例如:lvg模块属于community.general集合
# ansible-galaxy collection install community.general

查看模块,例如:
# ansible-doc -l | grep -w copy
ansible.builtin.copy  

# ansible-doc -l | grep -w lvol
community.general.lvol    

# ansible-doc -l | grep firewalld
ansible.posix.firewalld

查看所有核心模块:
# ansible-doc -l | grep ansible.builtin

生成ansible配置文件
# mkdir /etc/ansible
# ansible-config init --disabled all > /etc/ansible/ansible.cfg
# ls /etc/ansible/
ansible.cfg

编写主机清单文件
# vi /etc/ansible/hosts

生成公私钥,将公钥拷贝到被控端
# ssh-keygen 
# ssh-copy-id root@192.168.58.11

验证连通性
命令行:
# ansible web1 -m ansible.builtin.ping

剧本:
# vim a.yaml
---
 - hosts: web1
   tasks:
   - name:
     ansible.builtin.ping:
     register: test_ping
   - ansible.builtin.debug:
       var: test_ping

# ansible-playbook a.yaml
---
 - hosts: web1
   tasks:
   - name:
     ansible.builtin.copy:
       content: hello
       dest: /root/copy.txt

执行
# ansible-playbook  a.yaml

二、ansible-navigator

ansible-navigator是一个用于交互式操作 Ansible 的工具,也叫做自动化导航器,官方文档:
https://docs.redhat.com/zh_hans/documentation/red_hat_ansible_automation_platform/2.0-ea/html/ansible_navigator_creator_guide/assembly-intro-navigator_ansible-navigator

安装 ansible-navigator
参考网站 : https://blog.csdn.net/weixin_43902588/article/details/127756952

Ansible Navigator 需要本地有 docker 或 podman 的容器运行环境以及 Python 3 环境,安装docker或者podman

配置yum源
# vim /etc/yum.repos.d/ansible.repo
[ansible-tower]
name=Ansible Tower Repository - $releasever $basearch
baseurl=http://releases.ansible.com/ansible-tower/rpm/epel-7-$basearch
enabled=0
gpgcheck=0

[ansible-tower-dependencies]
name=Ansible Tower Dependencies Repository - $releasever $basearch
baseurl=http://releases.ansible.com/ansible-tower/rpm/dependencies/3.8/epel-7-$basearch
enabled=0
gpgcheck=0


# dnf install docker
# dnf install python3-pip
# python --version

安装ansible-navigator(自动化导航器)
# pip install ansible-navigator

查看版本
# ansible-navigator --version
ansible-navigator 3.4.1


了解 ansible-navigator 命令
ansible command     ansible-navigator command
---
ansible                    ansible-navigator exec – ansible
ansible-builder    ansible-navigator builder
ansible-config    ansible-navigator config
ansible-doc    ansible-navigator doc
ansible-inventory    ansible-navigator inventory
ansible-galaxy    ansible-navigator exec -- ansible-galaxy
ansible-lint    ansible-navigator lint
ansible-playbook    ansible-navigator run
ansible-test    ansible-navigator exec -- ansible-test
ansible-vault    ansible-navigator exec -- ansible-vault

下载EE镜像
# ansible-navigator

确保本地存在EE镜像(任意一种)
# docker images
# podman images
# ansible-navigator images

查看 ansible-navigator 的 EE镜像 中 ansible 的运行环境版本
# ansible-navigator exec -- ansible --version

EE镜像的使用:ansible-navigator支持使用Ansible Execution Environment镜像来运行Ansible Playbook。这些镜像包含了特定版本的Ansible及其依赖项,确保了在不同环境中运行Playbook时的一致性和可重复性。
当使用ansible-navigator执行Playbook时,如果配置了EE镜像,那么Playbook将在该镜像提供的环境中执行,而不是在宿主机上直接执行。
因此,在这种情况下,ansible-navigator执行时使用的Ansible版本将是EE镜像中指定的版本

配置文件:ansible-navigator可能通过其配置文件(如果有的话)来指定Ansible的执行环境或版本。然而,需要注意的是,ansible-navigator本身并不直接管理Ansible的安装版本,而是通过环境变量、EE镜像或其他机制来间接影响使用的Ansible版本

查看 EE 镜像中包含的 Collection
# ansible-navigator collections
ansible.posix                  1.5.4  
ansible.windows            1.14.0 
awx.awx                         22.2.0 
containers.podman       1.10.1 
kubernetes.core             2.4.0  
redhatinsights.insights  1.0.7  
theforeman.foreman      3.10.0 

下载安装导航器的集合community.general(需要注意,collections要与ansible.cfg放置在同一目录下,使用集合时需要在同一目录下执行)
# mkdir /etc/ansible/collections/
# ansible-navigator exec -- ansible-galaxy collection install community.general -p /etc/ansible/collections/ --force

验证
# cd /etc/ansible/
# ansible-navigator collections
community.general       9.1.0   False    bind_mount /etc/ansible/collections/ansible_collections/community/general


# vim /root/a.yaml
---
 - hosts: web1
   tasks:
   - name:
     ansible.builtin.copy:
       content: hello
       dest: /root/copy.txt

使用导航器执行剧本
# ansible-navigator run a.yaml -m stdout -i /etc/ansible/hosts

-i     表示指定主机清单文件的路径
-m stdout   审查结果

=====================
汇总网址

ansible的版本变化
https://docs.ansible.com/ansible/latest/porting_guides/porting_guides.html
安装指南
https://docs.ansible.com/ansible/latest/installation_guide/index.html

ansible的集合(collection)
官方文档:https://galaxy.ansible.com/ui/collections/
安装集合
https://blog.csdn.net/qq_62311779/article/details/139564357

ansible导航器:ansible-navigator
官方文档:
https://docs.redhat.com/zh_hans/documentation/red_hat_ansible_automation_platform/2.0-ea/html/ansible_navigator_creator_guide/assembly-intro-navigator_ansible-navigator
安装:
https://blog.csdn.net/weixin_43902588/article/details/127756952