本文介绍了键/值键中的 Ansible 变量的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在将 env 变量传递给 ansible playbook 中的 Docker 容器,如何在 env 的键/值中的键中设置 Ansible 变量?
I'm passing env variables to a Docker container in an ansible playbook, how do I set an Ansible variable in the key in the key/value of an env?
所以:
- name: webproxy container
docker_container:
name: "webproxy"
image: "webproxy"
env:
SERVICE_443_NAME: "webproxy"
变成这样:
- name: webproxy container
docker_container:
name: "webproxy"
image: "webproxy"
env:
SERVICE_{{ port_number }}_NAME: "webproxy"
推荐答案
使用 JSON 表示法定义带有环境变量的字典:
Use JSON notation to define a dictionary with environment variables:
- name: webproxy container
docker_container:
name: "webproxy"
image: "webproxy"
env: '{ "SERVICE_{{ port_number }}_NAME": "webproxy" }'
这篇关于键/值键中的 Ansible 变量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!