使用Ansibles URI模块和gitlab API的HTTP错误400

时间:2019-04-18 13:31:02

标签: api ansible gitlab uri

我正在尝试使用ansibles uri module提交到gitlab项目 和gitlab api

最终目标是将JSON移入模板,并将信息从多台计算机提交到gitlab项目中的不同文件。

但是现在我只能正确地使用uri模块。

我能够使用gitlab api进行提交,并在ansible的Linux框上进行卷曲。

PAYLOAD=$(cat << 'JSON'
{
  "branch": "master",
  "commit_message": "some commit message",
  "actions": [
    {
      "action": "create",
      "file_path": "Leer/test",
      "content": "some content"
    }
]
}
JSON
)
curl --request POST --header "PRIVATE-TOKEN: xxxxxxxxxxxxxxxx" --header "Content-Type: application/json" --data "$PAYLOAD" http://gitlab/api/v4/projects/2/repository/commits

并将其翻译为git-commit的以下角色:

- name: commit to gitlab
  uri:
    url: http://gitlab/api/v4/projects/2/repository/commits
    method: POST
    body_format: json
    headers:
      PRIVATE-TOKEN: "xxxxxxxxxxxxxxxx"
    body: |
      '{
        "branch": "master",
        "commit_message": "some ansible commit message",
        "actions": [
         {
           "action": "create",
           "file_path": "Leer/test2",
           "content": "some new content"
         }
        ]
      }'

使用了Playbook git.yml中的角色:

---
- hosts: 10.101.127.116
  connection: local
  gather_facts: no
  become: true
  roles:
  - git-commit

并运行Playbook:

ansible-playbook -k git.yml

但是我收到以下HTTP错误400:

fatal: [10.101.127.116]: FAILED! => 
{
"changed": false,
"connection": "close",
"content": "", 
"content_length": "0", 
"content_type": "text/html; charset=utf-8", "date": 
"Thu, 18 Apr 2019 13:11:13 GMT", 
"msg": "Status code was 400 and not [200]: HTTP Error 400: Bad Request", "redirected": false, 
"server": "nginx", 
"status": 400, 
"url": "http://gitlab/api/v4/projects/2/repository/commits", 
"x_request_id": "WNfjPOBkVk5", "x_runtime": "0.002530"
}

我感谢任何帮助

1 个答案:

答案 0 :(得分:1)

您错误地使用了YAML引用:

   body: |
      '{

意味着body实际上是单引号,然后是一个大括号,因为yaml |本身就是一个引号构造。

您可以删除两个单引号(JSON中的单引号字符不合法),也可以删除管道,然后将单引号上移到body:级别

您可能会发现使用YAML到JSON转换工具有助于查看文档的外观;有几台在线计算机,而remarshal在您的计算机上运行