diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2020-10-22 18:55:29 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2020-10-22 18:55:29 +0200 |
commit | 3b75213d4077b4dbbad1fe43c22beaecf4e815d6 (patch) | |
tree | cc2c8aea67333e2df7320c9a225cd585c78421ee /os/config/production.yml | |
parent | 5c31fbf0b12632b32912fa92be3d53b6e3902b91 (diff) | |
parent | b53b71f750008267351d84938b4701413f045628 (diff) | |
download | infrastructure-3b75213d4077b4dbbad1fe43c22beaecf4e815d6.tar.gz infrastructure-3b75213d4077b4dbbad1fe43c22beaecf4e815d6.zip |
We now have IPv6 activated on our network interfaces!
Diffstat (limited to 'os/config/production.yml')
-rw-r--r-- | os/config/production.yml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/os/config/production.yml b/os/config/production.yml new file mode 100644 index 0000000..77624c6 --- /dev/null +++ b/os/config/production.yml @@ -0,0 +1,31 @@ +cluster_nodes: + hosts: + veterini: + ansible_host: fbx-rennes2.machine.deuxfleurs.fr + ansible_port: 110 + ansible_user: root + ipv4: 192.168.1.2 + ipv6: 2a01:e35:2fdc:dbe0::2 + interface: eno1 + dns_server: 80.67.169.40 + ansible_python_interpreter: python3 + + silicareux: + ansible_host: fbx-rennes2.machine.deuxfleurs.fr + ansible_port: 111 + ansible_user: root + ipv4: 192.168.1.3 + ipv6: 2a01:e35:2fdc:dbe0::3 + interface: eno1 + dns_server: 80.67.169.40 + ansible_python_interpreter: python3 + + wonse: + ansible_host: fbx-rennes2.machine.deuxfleurs.fr + ansible_port: 112 + ansible_user: root + ipv4: 192.168.1.4 + ipv6: 2a01:e35:2fdc:dbe0::4 + interface: eno1 + dns_server: 80.67.169.40 + ansible_python_interpreter: python3 |