我在尝试从consul kv商店检索键值时遇到错误。
我们将键值存储在config / app-name /文件夹下。钥匙很多。我想使用ansible从领事中检索所有关键值。 但是得到以下错误:
PLAY [Adding host to inventory] **********************************************************************************************************************************************************
TASK [Adding new host to inventory] ******************************************************************************************************************************************************
changed: [localhost]
PLAY [Testing consul kv] *****************************************************************************************************************************************************************
TASK [show the lookups] ******************************************************************************************************************************************************************
fatal: [server1]: FAILED! => {"failed": true, "msg": "{{lookup('consul_kv','config/app-name/')}}: An unhandled exception occurred while running the lookup plugin 'consul_kv'. Error was a <class 'ansible.errors.AnsibleError'>, original message: Error locating 'config/app-name/' in kv store. Error was 500 No known Consul servers"}
PLAY RECAP *******************************************************************************************************************************************************************************
server1 : ok=0 changed=0 unreachable=0 failed=1
localhost : ok=1 changed=1 unreachable=0 failed=0
这是我正在尝试的代码。
---
- name: Adding host to inventory
hosts: localhost
tasks:
- name: Adding new host to inventory
add_host:
name: "{{ target }}"
- name: Testing consul kv
hosts: "{{ target }}"
vars:
kv_info: "{{lookup('consul_kv','config/app-name/')}}"
become: yes
tasks:
- name: show the lookups
debug: msg="{{ kv_info }}"
但删除文件夹和添加文件夹运行良好。但是从consul集群获取密钥值会引发错误。请在这里提出一些更好的方法。
- name: remove folder from the store
consul_kv:
key: 'config/app-name/'
value: 'removing'
recurse: true
state: absent
- name: add folder to the store
consul_kv:
key: 'config/app-name/'
value: 'adding'
我试过这个,但仍然是同样的错误。
---
- name: Adding host to inventory
hosts: localhost
environment:
ANSIBLE_CONSUL_URL: "http://consul-1.abcaa.com"
tasks:
- name: Adding new host to inventory
add_host:
name: "{{ target }}"
- name: show the lookups
debug: kv_info= "{{lookup('consul_kv','config/app-name/')}}"
答案 0 :(得分:0)
Ansible中的所有lookup
插件始终在localhost上进行评估,请参阅docs:
注意:强> 查找发生在本地计算机上,而不是远程计算机上。
我猜你希望通过执行consul fetch来填充kv_info
{{ target }}
服务器。
但是这个查找实际上是在你的Ansible控件主机(localhost)上执行的,如果没有设置ANSIBLE_CONSUL_URL
,你会得到No known Consul servers
错误。
当您使用consul_kv
模块(创建/删除文件夹)时,它会在{{ target }}
主机上执行,而不是consul_kv
查找插件强>