From ba0d4b44c16a371f9fd8386121995ce81baa668a Mon Sep 17 00:00:00 2001 From: Peter Mikus Date: Wed, 16 Aug 2017 11:32:13 +0200 Subject: CSIT-770 Installation of prerequisites on physical hosts - Update ansible to install kubernetes and docker Change-Id: Ibf57d4fa697f7c9b58f2e4925387b0c4e8b67274 Signed-off-by: Peter Mikus --- .../testbed-setup/playbooks/files/interfaces_physical | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 resources/tools/testbed-setup/playbooks/files/interfaces_physical (limited to 'resources/tools/testbed-setup/playbooks/files/interfaces_physical') diff --git a/resources/tools/testbed-setup/playbooks/files/interfaces_physical b/resources/tools/testbed-setup/playbooks/files/interfaces_physical new file mode 100644 index 0000000000..734d8cd18f --- /dev/null +++ b/resources/tools/testbed-setup/playbooks/files/interfaces_physical @@ -0,0 +1,14 @@ +# This file describes the network interfaces available on your system +# and how to activate them. For more information, see interfaces(5). + +# The loopback network interface +auto lo +iface lo inet loopback + +# The primary network interface +auto {{ ansible_default_ipv4["interface"] }} +iface {{ ansible_default_ipv4["interface"] }} inet static + address {{ ansible_default_ipv4["address"] }} + netmask {{ ansible_default_ipv4["netmask"] }} + gateway {{ ansible_default_ipv4["gateway"] }} + dns-nameservers 199.204.44.24 199.204.47.54 -- cgit 1.2.3-korg