change network config

This commit is contained in:
Mauro Torrez 2020-02-02 16:24:58 -03:00
parent e9a70f929c
commit 9d32a4e00d
2 changed files with 30 additions and 0 deletions

View File

@ -2,3 +2,26 @@
# adivinar nombre de release debian, por defecto usar buster
docker_target_release: "{{ ansible_distribution_release if \
ansible_distribution_release|default('NA') != 'NA' else 'buster' }}"
# configuracion de docker
docker_config:
# red bridge (por defecto)
bip: 172.17.0.1/16
# otras redes (https://github.com/moby/moby/pull/29376)
default-address-pools:
# scope local: usar 172.20.subnet.host
- scope: local
base: 172.20.0.0/16
size: 24
# scope local: usar 192.168.subnet.host
- scope: local
base: 192.168.0.0/16
size: 24
# scope global: usar 10.sub.net.host
- scope: global
base: 10.0.0.0/8
size: 24

View File

@ -79,3 +79,10 @@
sha256sum: 2bdab0bbf42583b4b77ee015cf908933c78f0572a7cb949a7dd8e200e6250221
dest: /usr/local/bin/docker-compose
mode: +x
- name: Configuración de Docker
copy:
content: |
{{ docker_config | to_nice_json }}
dest: /etc/docker/daemon.json
notify: restart docker