gpt4 book ai didi

Ansible : [DEPRECATION WARNING]: Using bare variables is deprecated

转载 作者:行者123 更新时间:2023-12-04 02:04:44 26 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





How to use Ansible's with_item with a variable?

(1 个回答)


3年前关闭。




我认为这是产生错误的剧本的一部分。我应该如何重写这部分?

roles: 
- role: json-transform
json_transforms: '{{ clientValidation.json_transforms}}'

它抛出以下警告:
[DEPRECATION WARNING]: Using bare variables is deprecated. Update your playbooks so that the environment value uses the full variable syntax ('{{json_transforms}}'). This feature will be removed in a 
future release. Deprecation warnings can be disabled by setting deprecation_warnings=False in ansible.cfg.

最佳答案

看起来你的最高级别没有任何问题——这可能是你角色内部的问题。弃用的裸变量通常出现在 with_xxx 上环形;例如:

- hosts: blar
vars:
items:
- one
- two
tasks:
- debug: msg="hi from {{ item }}"
with_items: items

在这种情况下,它告诉您 with_items: items应该是 with_items: "{{ items }}" .

关于Ansible : [DEPRECATION WARNING]: Using bare variables is deprecated,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36871527/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com