From 0238df1f27f00a6d5739667114c24ce259142f5a Mon Sep 17 00:00:00 2001 From: Andrew Schoen Date: Thu, 28 Jan 2016 07:21:08 -0600 Subject: [PATCH] ceph-ansible-pull-requests: set monitor_interface correctly The trusty and centos nodes we're using in OVH both use eth0. This also fixes a typo when setting monitor_interface in the json file used by extra-vars. Signed-off-by: Andrew Schoen --- ceph-ansible-pull-requests/build/build | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ceph-ansible-pull-requests/build/build b/ceph-ansible-pull-requests/build/build index 05e520d3e..6b3d281b4 100644 --- a/ceph-ansible-pull-requests/build/build +++ b/ceph-ansible-pull-requests/build/build @@ -12,8 +12,8 @@ devices='["/dev/vdb"]' ceph_stable="true" journal_collocation="true" journal_size=1024 -# use eth1 for libvirt and ubuntu, enp0s8 for CentOS -monitor_interface="eth1" +# both our trusty and centos nodes created in OVH use eth0 +monitor_interface="eth0" cluster_network="127.0.0.1/0" public_network="127.0.0.1/0" # the default settings include a setting for vm.min_free_kbytes which asks @@ -28,7 +28,7 @@ cat > $HOME/test-vars.json << EOF "ceph_stable":$ceph_stable, "journal_collocation":$journal_collocation, "journal_size":$journal_size, - "monitor_interface":"$monitor_interace", + "monitor_interface":"$monitor_interface", "cluster_network":"$cluster_network", "public_network":"$cluster_network", "os_tuning_params":$os_tuning_params, -- 2.47.3