无法在Ansible中运行CURL命令

问题描述 投票:0回答:2

我试图使用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": []}

如何解决此问题?

macos curl ansible istio
2个回答
1
投票

来自the documentation of the "command" module

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

相反,使用"shell" module

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

0
投票

根据Ansible 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
© www.soinside.com 2019 - 2024. All rights reserved.