我正在尝试使用ansible在马拉松上发布一个应用程序,然后尝试删除与我的playbook相同的应用程序。一切正常,唯一的问题是,我得到以下错误,当我运行我的剧本删除。
fatal: [localhost]: FAILED! =>
{
"cache_control":"no-cache, no-store, must-revalidate",
"changed":false,
"connection":"close",
"content":"{\"version\":\"2016-10-12T16:51:47.641Z\",\"deploymentId\":\"46edbf12-e837-45c5-9360-9824a4143868\"}",
"content_length":"92",
"content_type":"application/json; qs=2",
"date":"Wed, 12 Oct 2016 16:51:02 GMT",
"expires":"0",
"failed":true,
"json":{
"deploymentId":"46edbf12-e837-45c5-9360-9824a4143868",
"version":"2016-10-12T16:51:47.641Z"
},
"msg":"Status code was not [201]: OK (92 bytes)",
"pragma":"no-cache",
"redirected":false,
"server":"openresty/1.7.10.2",
"status":200,
"url":"http://mywebsite.com:19092/v2/apps/demoansible",
"x_marathon_leader":"http://10.201.160.1:31392"
}
正如您在上面看到的,json显示成功响应,状态为200,当我检查marathonui时,应用程序被删除。但唯一的问题是致命的:[localhost]:失败!=>错误。有没有办法,我可以消除这个错误?
这是我的删除行动手册:
---
- hosts: local
gather_facts: false
tasks:
-
uri:
body: "{{ lookup('file','app.json') }}"
body_format: json
force_basic_auth: true
method: DELETE
password: password
status_code: 201
url: "url/v2/apps/demoansible"
user: user1
1条答案
按热度按时间but5z9lq1#
我从你的剧本中看到,你正在用它删除马拉松比赛中的一个应用程序,而且你已经在url中给出了你的应用程序id,我认为你的剧本中不需要正文。请删除身体和状态码,我认为它应该工作良好。
你不需要body的原因是你用它来删除。对于在马拉松上删除跑步应用程序,app id已经足够了,您不需要通过app.json文件来删除应用程序。这将删除您面临的致命错误。
希望这有帮助。