web-dev-qa-db-fra.com

Exécuter curl -X avec un playbook ansible

Je veux exécuter la commande suivante à l'aide de playbook ansible:

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

Comment puis-je l'exécuter?

Si je cours:

- 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"

J'ai le prochain échec:

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

La meilleure façon de le faire est d'utiliser le module URI :

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"

Étant donné que votre fichier json se trouve sur la machine distante, la façon la plus simple d'exécuter est probablement avec le module 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