本人已经提issuehttps://github.com/FederatedAI/FATE/issues/5059.
根据群友 钟紫英 的方法,
修改project_path/enviroments/prod/hosts中的[fate]
组:
render后原文:
# 前面省略
ansible_become_method=sudo
ansible_become_user=root
ansible_become_pass=
[deploy_check]
[fate]
192.168.1.177
192.168.1.183
192.168.1.182
手动加入 ansible ssh host变量,根据情况是否添加ansible_connection=local
。
具体改成
ansible_become_method=sudo
ansible_become_user=root
ansible_become_pass=
[deploy_check]
[fate]
192.168.1.177 ansible_ssh_host=192.168.1.177
192.168.1.183 ansible_ssh_host=192.168.1.183
192.168.1.182 ansible_ssh_host=192.168.1.182
是不是官方要检查下bash ./deploy/deploy.sh render
是否漏了什么?或者是教程有问题,要再加点东西?