Ansible 4 移植指南
我们建议您在阅读此页面时,也参考 Ansible 4 变更日志,以了解您可能需要进行哪些更新。
剧本
jinja2_native
设置现在不再影响模板模块,模板模块隐式返回字符串。对于模板查找,有一个新的参数jinja2_native
(默认关闭)来控制该功能。其余的 Jinja2 表达式仍根据jinja2_native
设置进行操作。
命令行
ansible-galaxy login
命令已被移除,因为它使用的用于 GitHub 身份验证的基础 API 已关闭。使用ansible-galaxy
将角色或集合发布到 Galaxy 现在需要将 Galaxy API 令牌通过令牌文件传递到 CLI(默认位置为~/.ansible/galaxy_token
)或(不安全地)使用--token
参数传递到ansible-galaxy
。
已弃用
常量 ansible.module_utils.basic._CHECK_ARGUMENT_TYPES_DISPATCHER
已弃用。请改用 ansible.module_utils.common.parameters.DEFAULT_TYPE_VALIDATORS
。
重大更改
对 AnsibleModule
的更改
随着使用 ArgumentSpecValidator
执行参数规范验证,以下 AnsibleModule
中的私有方法已被移除
_check_argument_types()
_check_argument_values()
_check_arguments()
_check_mutually_exclusive()
–>ansible.module_utils.common.validation.check_mutually_exclusive()
_check_required_arguments()
–>ansible.module_utils.common.validation.check_required_arguments()
_check_required_by()
–>ansible.module_utils.common.validation.check_required_by()
_check_required_if()
–>ansible.module_utils.common.validation.check_required_if()
_check_required_one_of()
–>ansible.module_utils.common.validation.check_required_one_of()
_check_required_together()
–>ansible.module_utils.common.validation.check_required_together()
_check_type_bits()
–>ansible.module_utils.common.validation.check_type_bits()
_check_type_bool()
–>ansible.module_utils.common.validation.check_type_bool()
_check_type_bytes()
–>ansible.module_utils.common.validation.check_type_bytes()
_check_type_dict()
–>ansible.module_utils.common.validation.check_type_dict()
_check_type_float()
–>ansible.module_utils.common.validation.check_type_float()
_check_type_int()
–>ansible.module_utils.common.validation.check_type_int()
_check_type_jsonarg()
–>ansible.module_utils.common.validation.check_type_jsonarg()
_check_type_list()
–>ansible.module_utils.common.validation.check_type_list()
_check_type_path()
–>ansible.module_utils.common.validation.check_type_path()
_check_type_raw()
–>ansible.module_utils.common.validation.check_type_raw()
_check_type_str()
–>ansible.module_utils.common.validation.check_type_str()
_count_terms()
–>ansible.module_utils.common.validation.count_terms()
_get_wanted_type()
_handle_aliases()
_handle_no_log_values()
_handle_options()
_set_defaults()
_set_fallbacks()
使用这些私有方法的模块或插件应使用ansible.module_utils.common.validation
或ArgumentSpecValidator.validate()
中的公共函数,如果上面没有列出公共函数。
更改为 ansible.module_utils.common.parameters
以下ansible.module_utils.common.parameters
中的函数现在是私有的,不应直接使用。请改用ArgumentSpecValidator.validate()
。
list_no_log_values
list_deprecations
handle_aliases
其他
升级:如果从
ansible < 2.10
或从ansible-base
升级并使用pip,则必须在安装ansible-core
之前pip uninstall ansible
或pip uninstall ansible-base
以避免冲突。控制器节点上的Python 3.8是此版本的软性要求。
ansible-core
2.11仍然可以使用与ansible-base
2.10相同的Python版本,但是当在Python版本低于3.8的控制器节点上运行时,2.11会发出警告。可以通过在环境中设置ANSIBLE_CONTROLLER_PYTHON_WARNING=False
来禁用此警告。ansible-core
2.12将需要Python 3.8或更高版本。配置系统现在验证
choices
字段,因此在2.10中被忽略的任何违反该字段的设置都会在2.11中导致错误。例如,ANSIBLE_COLLECTIONS_ON_ANSIBLE_VERSION_MISMATCH=0
现在会导致错误(有效选择是ignore
、warn
或error
)。ansible-galaxy
命令现在使用resolvelib
来解决依赖关系。在大多数情况下,这除了性能更高之外,不应产生用户可见的差异,但我们在这里将其记录在案,以备将来参考并确保完整性。如果您将Python
module_utils
导入到您维护的任何模块中,您现在可以通过将import
语句包装在try
或if
块中,从而在模块有效负载构建期间将导入标记为可选。这允许模块使用在所有版本的Ansible或集合中可能不存在的module_utils
,并在模块运行时执行任意恢复或回退操作。
模块
apt_key
模块已明确定义file
与data
、keyserver
和url
互斥。它们不能再一起使用。meta
模块现在支持用户定义任务的标签。将任务的标签设置为“always”以保持以前的行为。内部meta
任务将继续始终运行。
已删除的模块
以下模块已不存在
无重大更改
弃用通知
无重大更改
值得注意的模块更改
facts - 在NetBSD上,当虚拟化且未在Xen上运行时,
ansible_virtualization_type
现在尝试报告比xen
更准确的结果。facts - 虚拟化事实现在包括
virtualization_tech_guest
和virtualization_tech_host
键。这些分别是访客所属的虚拟化技术的列表,或主机提供的虚拟化技术的列表。例如,如果您设置主机以提供KVM和VirtualBox,则这两个值都包含在virtualization_tech_host
中。类似地,在由KVM驱动的虚拟机上运行的podman容器具有virtualization_tech_guest
为["kvm", "podman", "container"]
。在setup模块中,参数
filter
类型已从string
更改为list
,以便使用多个过滤器。以前的行为(使用string
)仍然保留并作为单个过滤器工作。
插件
inventory插件 -
CachePluginAdjudicator.flush()
现在调用底层缓存插件的flush()
,而不是仅删除它知道的键。Inventory插件应使用delete()
来删除任何特定键。作为用户,这意味着当Inventory插件调用其clear_cache()
方法时,事实也可能从缓存中刷新。要解决此问题,用户可以配置Inventory插件以使用与事实缓存无关的缓存后端。回调插件 -
meta
任务执行现在像任何其他任务一样发送到v2_playbook_on_task_start
。默认情况下,只有显式meta任务被发送到那里。回调插件可以选择接收内部隐式创建的任务,以对其进行操作,如插件开发文档中所述。现在验证了
choices
,因此如果提供的值与之不匹配,则在2.11中使用不正确或不完整选择的插件会发出错误。这有一个简单的解决方法:更新choices
中的条目以匹配实际情况。
移植自定义脚本
无重大更改
v4.10.0移植指南
重大更改
containers.podman
添加podman_tag模块
添加secrets驱动程序和驱动程序选项支持
已弃用的功能
cisco.nxos
已弃用nxos_snmp_community模块。
已弃用nxos_snmp_contact模块。
已弃用nxos_snmp_host模块。
已弃用nxos_snmp_location模块。
已弃用nxos_snmp_traps模块。
已弃用nxos_snmp_user模块。
junipernetworks.junos
从junos_ospf_interfaces、junos_ospfv2和junos_ospfv3资源模块中弃用“router_id”选项。
v4.9.0移植指南
已知问题
purestorage.flashblade
purefb_lag - 响应中的mac_address字段未填充。这将在未来的FlashBlade更新中修复。
主要更改
fortinet.fortios
在某些配置模块的示例部分添加真实用例。
收集模块的当前配置并将其转换为剧本。
支持 FortiOS 7.0.1。
支持对包含成员列表的对象进行成员操作(删除/添加额外成员)。
支持
fortios_monitor_fact
和fortios_log_fact
中的选择器功能。
v4.8.0 移植指南
重大更改
community.zabbix
所有角色现在都通过其完全限定的集合名称引用其他角色和模块,这使得 Ansible 2.10 成为角色的最低支持版本(参见 issue 477)。
已弃用功能
community.azure
所有 community.azure.azure_rm_<resource>_facts 模块均已弃用。请改用 azure.azcollection.azure_rm_<resource>_info 模块(https://github.com/ansible-collections/community.azure/pull/24)。
所有 community.azure.azure_rm_<resource>_info 模块均已弃用。请改用 azure.azcollection.azure_rm_<resource>_info 模块(https://github.com/ansible-collections/community.azure/pull/24)。
community.azure.azure_rm_managed_disk 和 community.azure.azure_rm_manageddisk 已弃用。请改用 azure.azcollection.azure_rm_manageddisk(https://github.com/ansible-collections/community.azure/pull/24)。
community.azure.azure_rm_virtualmachine_extension 和 community.azure.azure_rm_virtualmachineextension 已弃用。请改用 azure.azcollection.azure_rm_virtualmachineextension(https://github.com/ansible-collections/community.azure/pull/24)。
community.azure.azure_rm_virtualmachine_scaleset 和 community.azure.azure_rm_virtualmachinescaleset 已弃用。请改用 azure.azcollection.azure_rm_virtualmachinescaleset(https://github.com/ansible-collections/community.azure/pull/24)。
community.hashi_vault
lookup hashi_vault -
ansible.cfg
文件中的[lookup_hashi_vault]
部分已弃用,并将从集合版本3.0.0
中删除。取而代之的是,可以使用[hashi_vault_collection]
部分,该部分将适用于将来集合中的所有插件(https://github.com/ansible-collections/community.hashi_vault/pull/144)。
v4.7.0 移植指南
主要更改
openvswitch.openvswitch
我们错误地将存储库标记为 2.0.0,并且由于它并非有意为之且无法恢复,因此我们发布了 2.0.1 以使社区了解主要版本的更新。
已弃用功能
cisco.ios
已弃用 ios_ntp 模块。
cisco.nxos
已弃用 nxos_ntp、nxos_ntp_options、nxos_ntp_auth 模块。
community.vmware
vmware_guest_vnc - Sphere 7.0 删除了内置的 VNC 服务器(https://docs.vmware.com/en/VMware-vSphere/7.0/rn/vsphere-esxi-vcenter-server-70-release-notes.html#productsupport)。
junipernetworks.junos
已弃用 ospfv2 资源模块中的 router_id。
v4.6.0 移植指南
主要更改
containers.podman
为 Pod 添加 systemd 生成
为容器生成 systemd 服务文件
gluster.gluster
在启动 Gluster 卷之前启用 client.ssl 和 server.ssl(https://github.com/gluster/gluster-ansible-collection/pull/19)
已弃用功能
community.grafana
grafana_dashboard lookup - 不再首选提供 API 密钥的混淆版本。
v4.5.0 移植指南
主要更改
hetzner.hcloud
引入放置组
ovirt.ovirt
remove_stale_lun - 添加用于删除陈旧 LUN 的角色(https://bugzilla.redhat.com/1966873)。
已弃用功能
ansible.netcommon
network_cli - paramiko_ssh 设置
look_for_keys
是根据传递给 network_cli 的password
和private_key_file
选项的值自动设置的。现在可以显式设置此选项,并且look_for_keys
的自动设置将在 2024-01-01 后删除(https://github.com/ansible-collections/ansible.netcommon/pull/271)。
cisco.ios
已弃用 ios_bgp,转而使用 ios_bgp_global 和 ios_bgp_address_family。
删除对 Ansible 测试集成作业提供程序的测试。这有助于我们为迁移到网络 ee 集成测试做好准备。
junipernetworks.junos
已弃用 ospfv3 资源模块中的 router_id。
v4.4.0 移植指南
已知问题
dellemc.openmanage
idrac_user - 问题 (192043) 模块可能会出现错误消息
unable to perform the import or export operation because there are pending attribute changes or a configuration job is in progress
。请等待作业完成,然后再次运行任务。
已弃用功能
cisco.iosxr
iosxr_logging 模块已弃用,转而使用新的 iosxr_logging_global 资源模块,并将在 “2023-08-01” 后的某个版本中删除。
cisco.nxos
nxos_logging 模块已弃用,转而使用新的 nxos_logging_global 资源模块,并将在 “2023-08-01” 后的某个版本中删除。
community.docker
docker_container - 新的
command_handling
的默认值compatibility
已弃用,将在 community.docker 3.0.0 中更改为correct
。在行为将发生变化的情况下,模块会发出弃用警告。请注意,ansible-core 仅会输出一次弃用警告,因此,如果它显示在较早的任务中,则可能还有其他任务也会发出此警告,但不会显示出来(https://github.com/ansible-collections/community.docker/pull/186)。
junipernetworks.junos
junos_logging 模块已弃用,转而使用新的 junos_logging_global 资源模块,并将在 “2023-08-01” 后的某个版本中删除。
vyos.vyos
vyos_logging 模块已弃用,转而使用新的 vyos_logging_global 资源模块,并将在 “2023-08-01” 后某个版本中删除。
v4.3.0 移植指南
主要更改
netapp.cloudmanager
在 cloudmanager 中向所有模块添加阶段环境
已弃用功能
community.hashi_vault
hashi_vault 集合 - 将在
community.hashi_vault
的2.0.0
版本中删除对 Python 3.5 的支持(https://github.com/ansible-collections/community.hashi_vault/issues/81)。
v4.2.0 移植指南
已知问题
dellemc.openmanage
idrac_user - 问题 (192043) 模块可能会出现错误消息
unable to perform the import or export operation because there are pending attribute changes or a configuration job is in progress
。请等待作业完成,然后再次运行任务。ome_smart_fabric_uplink - 问题 (186024) ome_smart_fabric_uplink 模块不允许创建多个同名的上行链路,即使 OpenManage Enterprise Modular 支持此功能。如果使用与现有上行链路相同的名称创建上行链路,则会修改现有上行链路。
主要变更
community.vmware
vmware_object_custom_attributes_info - 添加了一个新的模块来收集对象的自定义属性 (https://github.com/ansible-collections/community.vmware/pull/851)。
dellemc.openmanage
idrac_server_config_profile - 添加了通过 HTTP/HTTPS 共享导出和导入服务器配置配置文件的支持。
ome_device_group - 添加了使用设备的 IP 地址和组 ID 将设备添加到组的支持。
fortinet.fortios
新增模块 fortios_monitor_fact。
支持 Fortios 7.0。
支持日志 API。
已弃用功能
community.kubernetes 集合将重命名为 kubernetes.core。在 Ansible 5 中,community.kubernetes 将被一个空集合替换,该集合对所有当前内容到 kubernetes.core 的弃用重定向。如果您正在使用以
community.kubernetes.
开头的 FQCN,请立即将其更新为kubernetes.core.
。请注意,kubernetes.core 从 Ansible 3.0.0 开始包含在 Ansible 中 (https://github.com/ansible-community/community-topics/issues/22)。
ansible.windows
win_updates - 已弃用每个筛选更新的
filtered_reason
返回值,转而使用filtered_reasons
。这样做是为了显示更新被筛选的所有原因,而不仅仅是第一个原因。win_updates - 已弃用
use_scheduled_task
选项,因为它不再使用。win_updates - 已弃用
whitelist
和blacklist
选项,转而使用accept_list
和reject_list
,以符合 Ansible 中此类选项使用的新标准。
community.general
ali_instance_info - 标记了已弃用参数
availability_zone
和instance_names
的移除版本 (https://github.com/ansible-collections/community.general/issues/2429)。serverless - 弃用参数
functions
,因为它在代码中未使用 (https://github.com/ansible-collections/community.general/pull/2845)。
community.hashi_vault
hashi_vault 集合 - 将在
community.hashi_vault
的2.0.0
版本中删除对 Python 2 的支持 (https://github.com/ansible-collections/community.hashi_vault/issues/81)。
v4.1.0 移植指南
已知问题
dellemc.openmanage
idrac_user - 问题 (192043) 模块可能会出现错误消息
unable to perform the import or export operation because there are pending attribute changes or a configuration job is in progress
。请等待作业完成,然后再次运行任务。ome_smart_fabric_uplink - 问题 (186024) ome_smart_fabric_uplink 模块不允许创建多个同名的上行链路,即使 OpenManage Enterprise Modular 支持此功能。如果使用与现有上行链路相同的名称创建上行链路,则会修改现有上行链路。
主要变更
cloudscale_ch.cloud
添加 custom_image 模块
community.postgresql
postgresql_query -
as_single_query
选项的默认值将在 community.postgresql 2.0.0 中更改为yes
(https://github.com/ansible-collections/community.postgresql/issues/85)。
dellemc.openmanage
ome_firmware_baseline - 模块支持检查模式,并允许修改和删除固件基线。
ome_firmware_catalog - 模块支持检查模式,并允许修改和删除固件目录。
fortinet.fortios
改进
fortios_configuration_fact
以同时使用多个选择器。在所有基于 cofigurationAPI 的模块中支持
check_mode
。支持过滤事实收集模块
fortios_configuration_fact
和fortios_monitor_fact
。支持在
firewall_central_snat_map
中移动策略。统一监视器 API 的模式。
netbox.netbox
packages 现在是必需的 Python 包,并通过 Ansible 2.10+ 安装。
已移除功能
ansible.windows
win_reboot - 已移除
shutdown_timeout
和shutdown_timeout_sec
,它们自 Ansible 2.5 以来一直没有作用。
已弃用功能
ansible.windows
win_reboot - 可以使用
ignore_errors: True
忽略不可访问的主机,此功能将在未来版本中删除。请改用ignore_unreachable: True
来忽略不可访问的主机。- https://github.com/ansible-collections/ansible.windows/issues/62
community.docker
docker_* 模块和插件,除了
docker_swarm
连接插件和docker_compose
和docker_stack*` 模块 - 当前 默认 ``localhost
用于tls_hostname
已弃用。在 community.docker 2.0.0 中,它将从docker_host
计算 (https://github.com/ansible-collections/community.docker/pull/134)。
community.general
所有清单和保管库脚本都将在 4.0.0 版本中从 community.general 中移除。如果您正在引用它们,请将您的引用更新到新的 contrib-scripts GitHub 存储库,以便您的工作流在 community.general 4.0.0 发布后不会中断 (https://github.com/ansible-collections/community.general/pull/2697)。
nios、nios_next_ip、nios_next_network 查找插件、nios 文档片段以及 nios_host_record、nios_ptr_record、nios_mx_record、nios_fixed_address、nios_zone、nios_member、nios_a_record、nios_aaaa_record、nios_network、nios_dns_view、nios_txt_record、nios_naptr_record、nios_srv_record、nios_cname_record、nios_nsgroup 和 nios_network_view 模块已弃用,并将从 community.general 5.0.0 中移除。请改用安装 infoblox.nios_modules 集合并使用其插件和模块 (https://github.com/ansible-collections/community.general/pull/2458)。
在 community.general 4.0.0 中将移除
ipaddress
的供应商副本。如果您依赖于ipaddress
的供应商版本,请切换到 Python 3 标准库中的ipaddress
或 来自 pypi 的版本 (https://github.com/ansible-collections/community.general/pull/2459)。linode - 参数
backupsenabled
已弃用,将在 community.general 5.0.0 中移除 (https://github.com/ansible-collections/community.general/pull/2410)。lxd 清单插件 - 从 community.general 4.0.0 开始,当与 Python 2 一起使用时,该插件将需要安装
ipaddress
。ipaddress
是 Python 3 标准库的一部分,但可以从 pypi 为 Python 2 安装 (https://github.com/ansible-collections/community.general/pull/2459)。scaleway_security_group_rule - 从 community.general 4.0.0 开始,当与 Python 2 一起使用时,该模块将需要安装
ipaddress
。ipaddress
是 Python 3 标准库的一部分,但可以从 pypi 为 Python 2 安装 (https://github.com/ansible-collections/community.general/pull/2459)。
inspur.sm
add_ad_group - 此功能将在 inspur.sm.add_ad_group 3.0.0 中移除。替换为 inspur.sm.ad_group。
add_ldap_group - 此功能将在 inspur.sm.add_ldap_group 3.0.0 中移除。替换为 inspur.sm.ldap_group。
add_user - 此功能将在 inspur.sm.add_user 3.0.0 中移除。替换为 inspur.sm.user。
add_user_group - 此功能将在 inspur.sm.add_user_group 3.0.0 中移除。替换为 inspur.sm.user_group。
del_ad_group - 此功能将在 inspur.sm.del_ad_group 3.0.0 中移除。替换为 inspur.sm.ad_group。
del_ldap_group - 此功能将在 inspur.sm.del_ldap_group 3.0.0 中移除。替换为 inspur.sm.ldap_group。
del_user - 此功能将在 inspur.sm.del_user 3.0.0 中移除。替换为 inspur.sm.user。
del_user_group - 此功能将在 inspur.sm.del_user_group 3.0.0 中移除。替换为 inspur.sm.user_group。
edit_ad_group - 此功能将在 inspur.sm.edit_ad_group 3.0.0 中移除。替换为 inspur.sm.ad_group。
edit_ldap_group - 此功能将在 inspur.sm.edit_ldap_group 3.0.0 中移除。替换为 inspur.sm.ldap_group。
edit_user - 此功能将在 inspur.sm.edit_user 3.0.0 中移除。替换为 inspur.sm.user。
edit_user_group - 此功能将在 inspur.sm.edit_user_group 3.0.0 中移除。替换为 inspur.sm.user_group。
v4.0.0 移植指南
已知问题
Ansible-core
ansible-test -
pylint
的健全性测试不再能正确检测非常量的“错误”变量名。有关更多详细信息,请参阅 问题 3701。
dellemc.openmanage
idrac_user - 问题 (192043) 模块可能会出现错误消息
unable to perform the import or export operation because there are pending attribute changes or a configuration job is in progress
。请等待作业完成,然后再次运行任务。ome_configuration_compliance_info - 问题 (195592) 模块可能会出错,并显示消息
unable to process the request because an error occurred
。如果问题仍然存在,请向系统管理员报告。ome_smart_fabric - 问题 (185322) OpenManage Enterprise Modular 仅支持三种设计类型,但即使设计类型不受支持,模块也能成功创建结构。
ome_smart_fabric_uplink - 问题 (186024) ome_smart_fabric_uplink 模块不允许创建多个同名的上行链路,即使 OpenManage Enterprise Modular 支持此功能。如果使用与现有上行链路相同的名称创建上行链路,则会修改现有上行链路。
fortinet.fortios
监视器 API 的模块尚未进行版本控制。
重大更改
Ansible-core
无论是否使用
--force
,都会重新安装 SCM 集合。NetBSD 虚拟化事实(特别是
ansible_virtualization_type
)现在通过检查machdep.hypervisor
sysctl
键的值来返回更准确的值。此更改是重大更改,因为在某些情况下,我们之前会错误地报告xen
,即使目标未在 Xen 上运行。这在大多数情况下可以防止这种行为。(https://github.com/ansible/ansible/issues/69352)将树内依赖项解析器替换为外部实现,pip >= 20.3 现在默认使用该实现——
resolvelib
。(https://github.com/ansible/ansible/issues/71784)meta
模块现在支持用户定义任务的标签。内部meta
任务将始终运行。(https://github.com/ansible/ansible/issues/64558)已删除 ansible-galaxy login 命令(请参阅 问题 71560)
ansible.netcommon
已从集合中删除供应商提供的 ipaddress 包。如果在集合中使用 ansible_collections.ansible.netcommon.plugins.module_utils.compat.ipaddress,则需要将其更改为导入 ipaddress。如果使用 ipaddress 的内容支持 Python 2.7,则还需要确保用户已安装 ipaddress 包。请参阅 https://docs.ansible.org.cn/ansible/latest/dev_guide/developing_modules_best_practices.html#importing-and-using-shared-code,了解如何安全地导入用户系统中可能缺少的外部包。Python 2.7 的 ipaddress 反向移植版本可在 https://pypi.ac.cn/project/ipaddress/ 获取。
community.docker
docker_swarm - 如果指定了
join_token
,则具有相同值的返回的加入令牌将被VALUE_SPECIFIED_IN_NO_LOG_PARAMETER
替换。当使用指定的join_token
调用模块时,请确保不要盲目使用此模块返回值中的加入令牌!此重大更改出现在次要版本中,因为有必要修复安全问题 (https://github.com/ansible-collections/community.docker/pull/103)。
community.general
如果使用 Ansible 2.9 和此集合中的这些插件或模块,则 community.general 3.0.0 会在尝试使用 DellEMC 内容(通过 FQCN,如
community.general.idrac_firmware
)时导致错误。由于 Ansible 2.9 无法使用重定向,因此您需要手动调整 playbook 和角色以使用新的 FQCN(对于前面的示例,为dellemc.openmanage.idrac_firmware
)并确保已安装dellemc.openmanage
。如果使用 ansible-base 2.10 或更高版本,但未安装 Ansible 4.0.0,而是手动安装了(和/或升级了)community.general,则需要确保也安装了
dellemc.openmanage
集合,如果您正在使用任何这些插件或模块。虽然 ansible-base 2.10 或更高版本可以使用 community.general 3.0.0 添加的重定向,但它们指向的集合(例如 dellemc.openmanage)必须已安装才能正常工作。gitlab_deploy_key - 如果对于已存在的密钥标题,给出了不同的公钥作为参数,则不会发生任何事情,现在已更改,以便将公钥更新为新值 (https://github.com/ansible-collections/community.general/pull/1661)。
java_keystore - 现在改为了覆盖密钥库,而不是失败,如果别名(名称)已更改。这原本是预期的行为,但由于逻辑错误而无法正常工作。请确保 playbook 和角色不依赖于旧行为(即失败而不是覆盖)(https://github.com/ansible-collections/community.general/issues/1671)。
java_keystore - 现在改为了覆盖密钥库,而不是失败,如果密码已更改。请确保 playbook 和角色不依赖于旧行为(即失败而不是覆盖)(https://github.com/ansible-collections/community.general/issues/1671)。
one_image - 使用 pyone 而不是 python-oca (https://github.com/ansible-collections/community.general/pull/2032)。
utm_proxy_auth_profile -
frontend_cookie_secret
返回值现在包含一个占位符字符串,而不是模块的frontend_cookie_secret
参数 (https://github.com/ansible-collections/community.general/pull/1736)。
fortinet.fortios
通用 FortiOS 模块 - 用于使用 Ansible 发出通用请求的 FOS 模块。
支持 FOS 监视器 API - 监视器 API 有几个新模块。
统一集合 - fortios 集合本身将适配任何 FOS 平台。
servicenow.servicenow
auth 字段现在是除基本身份验证之外的所有内容的必需字段。
theforeman.foreman
所有角色变量现在都以
foreman_
为前缀,以避免与来自此集合外部的角色的同名变量发生冲突。
主要更改
Ansible-core
可以使用新版本要求重新安装集合,而无需使用
--force
标志。如有必要,集合的依赖项也将使用新要求进行更新。使用--upgrade
强制进行传递依赖项更新。AnsibleModule - 使用
ArgumentSpecValidator
类来验证参数规范,并删除与参数规范验证相关的私有方法。任何使用私有方法的模块现在都应该使用ArgumentSpecValidator
类或相应的验证函数。声明
resolvelib >= 0.5.3, < 0.6.0
为 ansible-core 的直接依赖项。参考:- https://github.com/sarugaku/resolvelib - https://pypi.ac.cn/p/resolvelib - https://pradyunsg.me/blog/2020/03/27/pip-resolver-testing现在可以从本地文件夹和类似于 SCM 结构(包含多个集合)的命名空间文件夹安装 Ansible 集合。
现在可以使用
--upgrade
选项通过ansible-galaxy collection install
从 Galaxy 服务器升级 Ansible 集合。支持在角色执行时验证角色参数规范。当角色包含参数规范时,会在角色执行开始时插入一个隐式验证任务。
添加
ArgumentSpecValidator
类,用于在AnsibleModule
外部根据参数规范验证参数 (https://github.com/ansible/ansible/pull/73335)ansible-test - 使用
centos6
和default
测试容器运行的测试现在使用 PyPI 代理容器在使用 Python 2.6 时访问 PyPI。这允许在 Python 2.6 下运行的测试继续工作,即使 PyPI 停止支持不支持 SNI 的客户端。
ansible.netcommon
从 netconf_config 中删除已弃用的连接参数。
arista.eos
需要 ansible.netcommon v2.0.0+ 以支持 ansible_network_single_user_mode 和 ansible_network_import_modules - 请参阅 ansible.netcommon 变更日志 以获取更多详细信息。
cisco.asa
请参阅 ansible.netcommon 变更日志 <https://github.com/ansible-collections/ansible.netcommon/blob/main/changelogs/CHANGELOG.rst#ansible-netcommon-collection-release-notes> 以获取更多详细信息。
需要 ansible.netcommon v2.0.0+ 以支持 ansible_network_single_user_mode 和 ansible_network_import_modules。
cisco.ios
请参阅 ansible.netcommon 变更日志 以获取更多详细信息。
需要 ansible.netcommon v2.0.0+ 以支持 ansible_network_single_user_mode 和 ansible_network_import_modules。
cisco.iosxr
请参阅 ansible.netcommon 变更日志 以获取更多详细信息。
需要 ansible.netcommon v2.0.0+ 以支持 ansible_network_single_user_mode 和 ansible_network_import_modules。
ipaddress 不再位于 ansible.netcommon 中。对于没有 ipaddress 的 Python 版本(< 3.0),现在需要 ipaddress 包。
cisco.nxos
请参阅 ansible.netcommon 变更日志 以获取更多详细信息。
需要 ansible.netcommon v2.0.0+ 以支持 ansible_network_single_user_mode 和 ansible_network_import_modules。
community.grafana
在 grafana_teams 和 grafana_folder 模块中引入“skip_version_check”参数 (#147)
community.mysql
mysql_replication - 添加弃用警告,表示
Is_Slave
和Is_Master
的返回值将在community.mysql
3.0.0 中分别替换为Is_Primary
和Is_Replica
(https://github.com/ansible-collections/community.mysql/pull/147).mysql_replication -
state
选项中包含master
的选择项将在community.mysql
3.0.0 中最终替换为备选的primary
选择项,添加弃用警告 (https://github.com/ansible-collections/community.mysql/pull/150).mysql_replication - 模式选项值
getslave
、startslave
、stopslave
、resetslave
、resetslaveall` 以及 master_use_gtid 选项 ``slave_pos
已弃用(请参阅备选值),并将在community.mysql
3.0.0 中移除 (https://github.com/ansible-collections/community.mysql/pull/97).mysql_replication - 返回值
Is_Slave
和Is_Master
将在community.mysql
3.0.0 中分别替换为Is_Replica
和Is_Primary
(https://github.com/ansible-collections/community.mysql/issues/145).mysql_replication - 模块返回的消息中
SLAVE
一词将在community.mysql
2.0.0 中更改为REPLICA
(https://github.com/ansible-collections/community.mysql/issues/98).mysql_replication - 模块返回的消息中
master
一词将在community.mysql
3.0.0 中替换为primary
(https://github.com/ansible-collections/community.mysql/issues/145).mysql_replication - 模块返回的消息中
slave
一词替换为replica
(https://github.com/ansible-collections/community.mysql/issues/98).mysql_user -
REQUIRESSL
是community.mysql
2.0.0 中tls_requires
选项中ssl
密钥的别名,并且将在community.mysql
3.0.0 中完全放弃支持 (https://github.com/ansible-collections/community.mysql/issues/121).
fortinet.fortios
新增模块 fortios_configuration_fact
新增模块 fortios_json_generic
新增模块 fortios_monitor
新增模块 fortios_monitor_fact
junipernetworks.junos
请参阅 ansible.netcommon 变更日志 以获取更多详细信息。
需要 ansible.netcommon v2.0.0+ 以支持 ansible_network_single_user_mode 和 ansible_network_import_modules。
netapp.ontap
na_ontap_autosupport - 为模块添加了 REST 支持。
openvswitch.openvswitch
此特定版本没有重大更改,它是错误标记的,无法回滚。
servicenow.servicenow
重构客户端以继承自 AnsibleModule
支持 OpenID Connect 身份验证协议
支持用于身份验证的承载令牌
vyos.vyos
请参阅 ansible.netcommon 变更日志 以获取更多详细信息。
需要 ansible.netcommon v2.0.0+ 以支持 ansible_network_single_user_mode 和 ansible_network_import_modules
ipaddress 不再位于 ansible.netcommon 中。对于没有 ipaddress 的 Python 版本(< 3.0),现在需要 ipaddress 包。
已移除的功能
Ansible-core
从 ansible.plugins.strategy 中删除了 SharedPluginLoaderObj 类。它已弃用,建议使用标准插件加载器。
从回调插件基类中删除了 _get_item() 别名,该别名已弃用,建议使用 _get_item_label()。
“user” 参数之前已弃用,现在已删除,建议使用“scope”
已删除弃用的
ansible.constants.BECOME_METHODS
。已删除弃用的
ansible.constants.get_config()
。已删除弃用的
ansible.constants.mk_boolean()
。with_* 循环不再针对 name 参数可以接受列表的模块(主要是包管理器)进行优化。使用 name 而不是使用 with_items 等循环遍历各个名称。
community.general
ome_device_info
、idrac_firmware
和idrac_server_config_profile
模块现已从 community.general 迁移到 dellemc.openmanage Ansible 集合。如果您使用的是 ansible-base 2.10 或更高版本,则已提供重定向。如果您使用的是 Ansible 2.9 并安装了此集合,则需要调整 FQCN(
community.general.idrac_firmware
→dellemc.openmanage.idrac_firmware
)并确保安装 dellemc.openmanage 集合。已删除弃用的 ali_instance_facts 模块。请改用 ali_instance_info (https://github.com/ansible-collections/community.general/pull/1924).
已删除弃用的 gluster_heal_info 模块。请改用 gluster.gluster.gluster_heal_info (https://github.com/ansible-collections/community.general/pull/1924).
已删除弃用的 gluster_peer 模块。请改用 gluster.gluster.gluster_peer (https://github.com/ansible-collections/community.general/pull/1924).
已删除弃用的 gluster_volume 模块。请改用 gluster.gluster.gluster_volume (https://github.com/ansible-collections/community.general/pull/1924).
已删除弃用的 helm 模块。请改用 community.kubernetes.helm (https://github.com/ansible-collections/community.general/pull/1924).
已删除弃用的 hpilo_facts 模块。请改用 hpilo_info (https://github.com/ansible-collections/community.general/pull/1924).
已删除弃用的 idrac_redfish_facts 模块。请改用 idrac_redfish_info (https://github.com/ansible-collections/community.general/pull/1924).
已删除弃用的 jenkins_job_facts 模块。请改用 jenkins_job_info (https://github.com/ansible-collections/community.general/pull/1924).
已删除弃用的 ldap_attr 模块。请改用 ldap_attrs (https://github.com/ansible-collections/community.general/pull/1924).
已删除弃用的 memset_memstore_facts 模块。请改用 memset_memstore_info (https://github.com/ansible-collections/community.general/pull/1924).
已删除弃用的 memset_server_facts 模块。请改用 memset_server_info (https://github.com/ansible-collections/community.general/pull/1924).
已删除弃用的 na_ontap_gather_facts 模块。请改用 netapp.ontap.na_ontap_info (https://github.com/ansible-collections/community.general/pull/1924).
已删除弃用的 nginx_status_facts 模块。请改用 nginx_status_info (https://github.com/ansible-collections/community.general/pull/1924).
已删除弃用的 one_image_facts 模块。请改用 one_image_info (https://github.com/ansible-collections/community.general/pull/1924).
已删除弃用的 onepassword_facts 模块。请改用 onepassword_info (https://github.com/ansible-collections/community.general/pull/1924).
已删除弃用的 oneview_datacenter_facts 模块。请改用 oneview_datacenter_info (https://github.com/ansible-collections/community.general/pull/1924).
已删除弃用的 oneview_enclosure_facts 模块。请改用 oneview_enclosure_info (https://github.com/ansible-collections/community.general/pull/1924).
已删除弃用的 oneview_ethernet_network_facts 模块。请改用 oneview_ethernet_network_info (https://github.com/ansible-collections/community.general/pull/1924).
已删除弃用的 oneview_fc_network_facts 模块。请改用 oneview_fc_network_info (https://github.com/ansible-collections/community.general/pull/1924).
已删除弃用的 oneview_fcoe_network_facts 模块。请改用 oneview_fcoe_network_info (https://github.com/ansible-collections/community.general/pull/1924).
已删除弃用的 oneview_logical_interconnect_group_facts 模块。请改用 oneview_logical_interconnect_group_info (https://github.com/ansible-collections/community.general/pull/1924).
已删除弃用的 oneview_network_set_facts 模块。请改用 oneview_network_set_info (https://github.com/ansible-collections/community.general/pull/1924).
已弃用的 oneview_san_manager_facts 模块已被移除。请改用 oneview_san_manager_info (https://github.com/ansible-collections/community.general/pull/1924).
已弃用的 online_server_facts 模块已被移除。请改用 online_server_info (https://github.com/ansible-collections/community.general/pull/1924).
已弃用的 online_user_facts 模块已被移除。请改用 online_user_info (https://github.com/ansible-collections/community.general/pull/1924).
已弃用的 ovirt 模块已被移除。请改用 ovirt.ovirt.ovirt_vm (https://github.com/ansible-collections/community.general/pull/1924).
已弃用的 ovirt_affinity_label_facts 模块已被移除。请改用 ovirt.ovirt.ovirt_affinity_label_info (https://github.com/ansible-collections/community.general/pull/1924).
已弃用的 ovirt_api_facts 模块已被移除。请改用 ovirt.ovirt.ovirt_api_info (https://github.com/ansible-collections/community.general/pull/1924).
已弃用的 ovirt_cluster_facts 模块已被移除。请改用 ovirt.ovirt.ovirt_cluster_info (https://github.com/ansible-collections/community.general/pull/1924).
已弃用的 ovirt_datacenter_facts 模块已被移除。请改用 ovirt.ovirt.ovirt_datacenter_info (https://github.com/ansible-collections/community.general/pull/1924).
已弃用的 ovirt_disk_facts 模块已被移除。请改用 ovirt.ovirt.ovirt_disk_info (https://github.com/ansible-collections/community.general/pull/1924).
已弃用的 ovirt_event_facts 模块已被移除。请改用 ovirt.ovirt.ovirt_event_info (https://github.com/ansible-collections/community.general/pull/1924).
已弃用的 ovirt_external_provider_facts 模块已被移除。请改用 ovirt.ovirt.ovirt_external_provider_info (https://github.com/ansible-collections/community.general/pull/1924).
已弃用的 ovirt_group_facts 模块已被移除。请改用 ovirt.ovirt.ovirt_group_info (https://github.com/ansible-collections/community.general/pull/1924).
已弃用的 ovirt_host_facts 模块已被移除。请改用 ovirt.ovirt.ovirt_host_info (https://github.com/ansible-collections/community.general/pull/1924).
已弃用的 ovirt_host_storage_facts 模块已被移除。请改用 ovirt.ovirt.ovirt_host_storage_info (https://github.com/ansible-collections/community.general/pull/1924).
已弃用的 ovirt_network_facts 模块已被移除。请改用 ovirt.ovirt.ovirt_network_info (https://github.com/ansible-collections/community.general/pull/1924).
已弃用的 ovirt_nic_facts 模块已被移除。请改用 ovirt.ovirt.ovirt_nic_info (https://github.com/ansible-collections/community.general/pull/1924).
已弃用的 ovirt_permission_facts 模块已被移除。请改用 ovirt.ovirt.ovirt_permission_info (https://github.com/ansible-collections/community.general/pull/1924).
已弃用的 ovirt_quota_facts 模块已被移除。请改用 ovirt.ovirt.ovirt_quota_info (https://github.com/ansible-collections/community.general/pull/1924).
已弃用的 ovirt_scheduling_policy_facts 模块已被移除。请改用 ovirt.ovirt.ovirt_scheduling_policy_info (https://github.com/ansible-collections/community.general/pull/1924).
已弃用的 ovirt_snapshot_facts 模块已被移除。请改用 ovirt.ovirt.ovirt_snapshot_info (https://github.com/ansible-collections/community.general/pull/1924).
已弃用的 ovirt_storage_domain_facts 模块已被移除。请改用 ovirt.ovirt.ovirt_storage_domain_info (https://github.com/ansible-collections/community.general/pull/1924).
已弃用的 ovirt_storage_template_facts 模块已被移除。请改用 ovirt.ovirt.ovirt_storage_template_info (https://github.com/ansible-collections/community.general/pull/1924).
已弃用的 ovirt_storage_vm_facts 模块已被移除。请改用 ovirt.ovirt.ovirt_storage_vm_info (https://github.com/ansible-collections/community.general/pull/1924).
已弃用的 ovirt_tag_facts 模块已被移除。请改用 ovirt.ovirt.ovirt_tag_info (https://github.com/ansible-collections/community.general/pull/1924).
已弃用的 ovirt_template_facts 模块已被移除。请改用 ovirt.ovirt.ovirt_template_info (https://github.com/ansible-collections/community.general/pull/1924).
已弃用的 ovirt_user_facts 模块已被移除。请改用 ovirt.ovirt.ovirt_user_info (https://github.com/ansible-collections/community.general/pull/1924).
已弃用的 ovirt_vm_facts 模块已被移除。请改用 ovirt.ovirt.ovirt_vm_info (https://github.com/ansible-collections/community.general/pull/1924).
已弃用的 ovirt_vmpool_facts 模块已被移除。请改用 ovirt.ovirt.ovirt_vmpool_info (https://github.com/ansible-collections/community.general/pull/1924).
已弃用的 purefa_facts 模块已被移除。请改用 purestorage.flasharray.purefa_info (https://github.com/ansible-collections/community.general/pull/1924).
已弃用的 purefb_facts 模块已被移除。请改用 purestorage.flasharray.purefb_info (https://github.com/ansible-collections/community.general/pull/1924).
已弃用的 python_requirements_facts 模块已被移除。请改用 python_requirements_info (https://github.com/ansible-collections/community.general/pull/1924).
已弃用的 redfish_facts 模块已被移除。请改用 redfish_info (https://github.com/ansible-collections/community.general/pull/1924).
已弃用的 scaleway_image_facts 模块已被移除。请改用 scaleway_image_info (https://github.com/ansible-collections/community.general/pull/1924).
已弃用的 scaleway_ip_facts 模块已被移除。请改用 scaleway_ip_info (https://github.com/ansible-collections/community.general/pull/1924).
已弃用的 scaleway_organization_facts 模块已被移除。请改用 scaleway_organization_info (https://github.com/ansible-collections/community.general/pull/1924).
已弃用的 scaleway_security_group_facts 模块已被移除。请改用 scaleway_security_group_info (https://github.com/ansible-collections/community.general/pull/1924).
已弃用的 scaleway_server_facts 模块已被移除。请改用 scaleway_server_info (https://github.com/ansible-collections/community.general/pull/1924).
已弃用的 scaleway_snapshot_facts 模块已被移除。请改用 scaleway_snapshot_info (https://github.com/ansible-collections/community.general/pull/1924).
已弃用的 scaleway_volume_facts 模块已被移除。请改用 scaleway_volume_info (https://github.com/ansible-collections/community.general/pull/1924).
已弃用的 smartos_image_facts 模块已被移除。请改用 smartos_image_info (https://github.com/ansible-collections/community.general/pull/1924).
已弃用的 vertica_facts 模块已被移除。请改用 vertica_info (https://github.com/ansible-collections/community.general/pull/1924).
已弃用的 xenserver_guest_facts 模块已被移除。请改用 xenserver_guest_info (https://github.com/ansible-collections/community.general/pull/1924).
ovirt_facts 文档片段已被移除 (https://github.com/ansible-collections/community.general/pull/1924).
airbrake_deployment - 已移除已弃用的
token
参数。请改用project_id
和project_key
(https://github.com/ansible-collections/community.general/pull/1926).bigpanda - 已移除别名
message
。请改用deployment_message
(https://github.com/ansible-collections/community.general/pull/1926).cisco_spark, cisco_webex - 已移除别名
message
。请改用msg
(https://github.com/ansible-collections/community.general/pull/1926).clc_aa_policy - 已移除
wait
参数。该参数没有任何作用 (https://github.com/ansible-collections/community.general/pull/1926).datadog_monitor - 已移除别名
message
。请改用notification_message
(https://github.com/ansible-collections/community.general/pull/1926).django_manage - 已移除
liveserver
参数 (https://github.com/ansible-collections/community.general/pull/1926).idrac_redfish_config - 已移除
manager_attribute_name
和manager_attribute_value
参数。请改用manager_attributes
(https://github.com/ansible-collections/community.general/pull/1926).iso_extract - 已移除别名
thirsty
。请改用force
(https://github.com/ansible-collections/community.general/pull/1926).ldap_entry -
params
参数现已完全移除。从 community.general 0.1.2 开始使用它就会触发错误 (https://github.com/ansible-collections/community.general/pull/2257).pulp_repo -
feed_client_cert
参数不再默认为client_cert
参数的值 (https://github.com/ansible-collections/community.general/pull/1926).pulp_repo -
feed_client_key
参数不再默认使用client_key
参数的值(https://github.com/ansible-collections/community.general/pull/1926)。pulp_repo - 别名
ca_cert
已被移除。请使用feed_ca_cert
代替(https://github.com/ansible-collections/community.general/pull/1926)。rax - 未使用的参数
service
已被移除(https://github.com/ansible-collections/community.general/pull/2020)。redfish 模块 - 当存在多个目标系统、机箱或管理器资源时,如果不指定目标资源的 ID 则不再允许发出数据修改命令。请使用
resource_id
选项指定目标 ID(https://github.com/ansible-collections/community.general/pull/1926)。redfish_config - 参数
bios_attribute_name
和bios_attribute_value
已被移除。请使用bios_attributes
代替(https://github.com/ansible-collections/community.general/pull/1926)。syspatch -
apply
参数已被移除。这是默认模式,因此简单地移除它不会改变行为(https://github.com/ansible-collections/community.general/pull/1926)。xbps -
force
参数已被移除。它没有任何效果(https://github.com/ansible-collections/community.general/pull/1926)。
community.network
已弃用的
community.network.ce_sflow
参数:rate_limit
、rate_limit_slot
和forward_enp_slot
已被移除(https://github.com/ansible-collections/community.network/pull/255)。已弃用的
community.network.sros
netconf 插件已被移除。请使用nokia.sros.md
代替(https://github.com/ansible-collections/community.network/pull/255)。
f5networks.f5_modules
已移除 bigip_gtm_pool 和 bigip_gtm_wide_ip 模块对 TMOS v11 的支持。
已移除 bigip_node 模块中的 quorum 和 monitor_type 参数。请参阅 https://clouddocs.f5.com/products/orchestration/ansible/devel/usage/porting-guides.html 中的移植指南部分。
已移除 bigip_log_destination 模块中的 syslog_settings 和 pool_settings 参数。请参阅 https://clouddocs.f5.com/products/orchestration/ansible/devel/usage/porting-guides.html 中的移植指南部分。
fortinet.fortios
已移除 fortios_facts 模块。
已移除 fortios_registration_forticare 模块。
已移除 fortios_registration_vdom 模块。
已移除 fortios_system_config_backup_restore 模块。
已移除 fortios_system_vmlicense 模块。
已弃用的功能
Ansible-core
从 2.14 版本开始,shell 和 command 模块将不再提供警告并建议使用模块代替命令的选项。这些模块的
warn
参数现已弃用,并默认为False
。类似地,COMMAND_WARNINGS
配置选项也已弃用,并默认为False
。这些将在 2.14 中被移除,并且它们的存在将成为错误。apt_key - 参数
key
没有任何作用,已被弃用,将在 ansible-core 2.14 版本中移除(https://github.com/ansible/ansible/pull/70319)。psrp - 将
pypsrp
的最低版本设置为0.4.0
。
ansible.netcommon
弃用 cli_parse 模块和 textfsm、ttp、xml、json 解析器插件,因为它们已移至 ansible.utils 集合(https://github.com/ansible-collections/ansible.netcommon/pull/182 https://github.com/ansible-collections/ansible.utils/pull/28)。
cisco.nxos
已弃用 nxos_bgp_af,建议使用 nxos_bgp_address_family 资源模块。
已弃用 nxos_bgp_neighbor_af,建议使用 nxos_bgp_neighbor_address_family 资源模块。
cloudscale_ch.cloud
volume 模块中 servers 参数的别名
server_uuids
和server_uuid
将在 3.0.0 版本中移除。
community.aws
ec2_eip - 正式弃用
device_id
的别名instance_id
(https://github.com/ansible-collections/community.aws/pull/349)。ec2_vpc_endpoint - 弃用 policy_file 选项,建议使用带有查找的 policy(https://github.com/ansible-collections/community.aws/pull/366)。
ec2_vpc_endpoint_info -
query
选项已被弃用,并将在 2022-12-01 后移除(https://github.com/ansible-collections/community.aws/pull/346)。ec2_vpc_endpoint_info 现在默认为列出有关端点的信息。搜索可用服务信息的权限已移至专用模块ec2_vpc_endpoint_service_info
。
community.crypto
acme module_utils -
acme
module_utils(ansible_collections.community.crypto.plugins.module_utils.acme
)已弃用,将在 community.crypto 2.0.0 中移除。请改用acme
包中的新 Python 模块(ansible_collections.community.crypto.plugins.module_utils.acme.xxx
)(https://github.com/ansible-collections/community.crypto/pull/184)。acme_account_info - 当
retrieve_orders=url_list
时,orders
将不再在 community.crypto 2.0.0 中返回。请使用order_uris
代替(https://github.com/ansible-collections/community.crypto/pull/178)。
community.general
apt_rpm - 已弃用无效的参数别名
update-cache
,将在 5.0.0 中移除(https://github.com/ansible-collections/community.general/pull/1927)。composer - 已弃用无效的参数别名
working-dir
、global-command
、prefer-source
、prefer-dist
、no-dev
、no-scripts
、no-plugins
、optimize-autoloader
、classmap-authoritative
、apcu-autoloader
、ignore-platform-reqs
,将在 5.0.0 中移除(https://github.com/ansible-collections/community.general/pull/1927)。cpanm - 参数
system_lib
已弃用,建议使用become
(https://github.com/ansible-collections/community.general/pull/2218)。github_deploy_key - 已弃用无效的参数别名
2fa_token
,将在 5.0.0 中移除(https://github.com/ansible-collections/community.general/pull/1927)。grove - 选项
message
将在 community.general 4.0.0 中移除。请使用新的选项message_content
代替(https://github.com/ansible-collections/community.general/pull/1929)。homebrew - 已弃用无效的参数别名
update-brew
,将在 5.0.0 中移除(https://github.com/ansible-collections/community.general/pull/1927)。homebrew_cask - 已弃用无效的参数别名
update-brew
,将在 5.0.0 中移除(https://github.com/ansible-collections/community.general/pull/1927)。opkg - 已弃用无效参数别名
update-cache
,将在 5.0.0 中移除(https://github.com/ansible-collections/community.general/pull/1927)。pacman - 已弃用无效参数别名
update-cache
,将在 5.0.0 中移除(https://github.com/ansible-collections/community.general/pull/1927)。puppet - 已弃用未记录的参数
show_diff
,将在 7.0.0 中移除。(https://github.com/ansible-collections/community.general/pull/1927)。runit - 未使用的参数
dist
已标记为弃用(https://github.com/ansible-collections/community.general/pull/1830)。slackpkg - 已弃用无效参数别名
update-cache
,将在 5.0.0 中移除(https://github.com/ansible-collections/community.general/pull/1927)。urpmi - 已弃用无效参数别名
update-cache
和no-recommends
,将在 5.0.0 中移除(https://github.com/ansible-collections/community.general/pull/1927)。xbps - 已弃用无效参数别名
update-cache
,将在 5.0.0 中移除(https://github.com/ansible-collections/community.general/pull/1927)。xfconf - 将输出作为事实返回已弃用,这将在 community.general 4.0.0 中移除。请将任务输出注册到变量中并使用它。您现在可以使用新的
disable_facts
选项切换到新的行为(https://github.com/ansible-collections/community.general/pull/1747)。
community.vmware
vmware_vmkernel_ip_config - 已弃用,建议使用 vmware_vmkernel(https://github.com/ansible-collections/community.vmware/pull/667)。
f5networks.f5_modules
对低于 3.5 版本的 Python 版本的支持即将弃用。