web-dev-qa-db-ja.com

ansibleプレイブックでcurl -Xを実行します

Ansibleプレイブックを使用して次のコマンドを実行します。

curl -X POST [email protected] -H "Content-Type: application/json" http://marathon.service.consul:8080/v2/apps

どうすれば実行できますか?

私が実行した場合:

- name: post to consul
  uri:
    url: http://marathon.service.consul:8080/v2/apps/
    method: POST
    body: "{{ lookup('file','mesos-consul.json') }}"
    body_format: json
    HEADER_Content-Type: "application/json"

私は次の失敗があります:

fatal: [172.16.8.231]: FAILED! => {"failed": true, "msg": "ERROR! thefile_name '/home/ikerlan/Ik4-Data-Platform/ansible/playbooks/Z_PONER_EN_MARCHA/dns-consul/mesos-consul.j2' does not exist, or is not readable"}

21
Asier Gomez

これを行う最良の方法は、 RIモジュール を使用することです。

tasks:
- name: post to consul
  uri:
    url: http://marathon.service.consul:8080/v2/apps/
    method: POST
    body: "{{ lookup('file','mesos-consul.json') }}"
    body_format: json
    headers:
      Content-Type: "application/json"

Jsonファイルはリモートマシン上にあるため、実行する最も簡単な方法はおそらくShellモジュールを使用することです。

- name: post to consul
  Shell: 'curl -X POST -d@/full/path/to/mesos-consul.json -H "Content-Type: application/json" http://marathon.service.consul:8080/v2/apps'
34
MillerGeek