mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00

- Setup single/multi node BigchainDB cluster using - Vagrant - Ansible - Updated documentation
22 lines
460 B
YAML
22 lines
460 B
YAML
---
|
|
- name: Add APT Key | Debian
|
|
apt_key:
|
|
keyserver: "{{ apt_keyserver }}"
|
|
id: "{{ apt_key_fingerprint }}"
|
|
tags: [mongodb]
|
|
|
|
- name: Add MongoDB repo and update cache | Debian
|
|
apt_repository:
|
|
repo: "{{ mongodb_apt_repo }}"
|
|
update_cache: yes
|
|
state: present
|
|
tags: [mongodb]
|
|
|
|
- name: Install MongoDB | Debian
|
|
apt:
|
|
name: "{{ item }}"
|
|
state: present
|
|
with_items:
|
|
- "{{ mongodb_package }}"
|
|
- python-pip
|
|
tags: [mongodb] |