无法在Ansible中运行CURL命令

时间:2019-11-20 06:09:40

标签: macos curl ansible istio

我试图使用Ansible下载Istio。在那里,我使用了以下结构。

- name: Download Istio
  command: curl https://istio.io/downloadIstio | sh -
- name: Start minikube
  command: minikube start

但是当我运行命令时,它会返回

fatal: [localhost]: FAILED! => {"changed": true, "cmd": ["curl", "https://istio.io/downloadIstio", "|", "sh", "-"], "delta": "0:00:00.005276", "end": "2019-11-20 11:32:17.749051", "msg": "non-zero return code", "rc": 2, "start": "2019-11-20 11:32:17.743775", "stderr": "curl: option -: is unknown\ncurl: try 'curl --help' or 'curl --manual' for more information", "stderr_lines": ["curl: option -: is unknown", "curl: try 'curl --help' or 'curl --manual' for more information"], "stdout": "", "stdout_lines": []}

如何解决此问题?

2 个答案:

答案 0 :(得分:1)

来自the documentation of the "command" module

  

命令将不会通过外壳处理,因此变量   像$ HOME一样,操作如“ <”,“>”,“ |”,“;”和“&”不会   工作。如果需要这些功能,请使用外壳模块。

相反,请使用"shell" module

- name: Download Istio
  shell: curl https://istio.io/downloadIstio | sh -

答案 1 :(得分:0)

根据docs和Zeitounator comment

  

命令模块不支持扩展的Shell语法,例如管道和重定向(尽管shell变量将始终起作用)。如果您的命令需要特定于shell的语法,请改用shell模块。

请考虑使用get_url module

  

将文件从HTTP,HTTPS或FTP下载到远程服务器。远程服务器必须直接访问远程资源。   您可以将其与shell模块结合使用:

作为示例,请查看以下community example

- name: Download zsh installer
    get_url: url=https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh dest=/tmp/zsh-installer.sh

  - name: Execute the zsh-installer.sh
    shell: /tmp/zsh-installer.sh