mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
* Problem: No automated way to set up a dev/test network * Problem: docs not updated for stack, ansible and docker based dev environments * Problem: Using apt triggers java runtime installation on MacOS - Update pre_tasks in ansible - Update bigchaindb-stop playbook to handle pre_tasks * Update Tendermint version to 0.19.3 from 0.19.2 * Update tendermint version to 0.19.3 everywhere else * Problem: Sphinx warns about duplicate section labels Solution: Don't use sphinx.ext.autosectionlabel * Problem: Sphinx complains that run-node-with-docker not in any TOC Solution: Add run-node-with-docker to a TOC (i.e. to an index.rst file) * Tendermint has not tagged `0.19.3` container * Problem: Internal hyperlinks to new pages not working Solution: Add .html to the ends of the filename strings * Problem: Invalid script imports * Problem: Invalid comparison for supported OS version * Addressing comments I * Problem: No way to configure dev/forked repo for developers * Problem: Docs not updated with STACK_REPO parameter * Addressing comments II
21 lines
1.1 KiB
YAML
21 lines
1.1 KiB
YAML
---
|
|
uninstall_old_version: false #[true, false]
|
|
docker_edition: 'ce' #[ce, ee] Currently, onlt CE is supported
|
|
docker_pkg: "docker-{{ docker_edition }}" #[docker-ce, docker-ee]
|
|
docker_update_channel: "stable" #[stable, edge]
|
|
|
|
# Host configuration
|
|
distribution_name: "{{ ansible_distribution|lower }}"
|
|
distribution_codename: "{{ ansible_distribution_release|lower }}"
|
|
distribution_major: "{{ ansible_distribution_major_version }}"
|
|
server_arch: "amd64" #[amd64, armhf, s390x]
|
|
|
|
# Docker Repositories
|
|
docker_apt_repo: "deb [arch={{ server_arch }}] https://download.docker.com/linux/{{ distribution_name }} {{ distribution_codename }} {{ docker_update_channel }}"
|
|
apt_key_fingerprint: "9DC858229FC7DD38854AE2D88D81803C0EBFCD88"
|
|
apt_key_url: "https://download.docker.com/linux/{{ distribution_name }}/gpg"
|
|
docker_yum_repo: "https://download.docker.com/linux/{{ distribution_name }}/{{ distribution_major }}/$basearch/{{ docker_update_channel }}"
|
|
docker_dnf_repo: "https://download.docker.com/linux/{{ distribution_name }}/{{ docker_pkg }}.repo"
|
|
|
|
# Docker configuration
|
|
bigchaindb_docker_net: "bigchaindb_docker_net" |