mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-08 01:58:34 +08:00
16 lines
278 B
YAML
16 lines
278 B
YAML
---
|
|
- name: setup pre-requisites #Install prerequisite
|
|
hosts: all
|
|
become: yes
|
|
become_user: root
|
|
roles:
|
|
- install-modules
|
|
- configure-hosts-file
|
|
|
|
- name: install docker
|
|
become: yes
|
|
become_user: root
|
|
hosts: dockernodes
|
|
roles:
|
|
- docker-installation
|
|
|