Update vagrant file

This patch updates local.conf to use ElasticSearch 5.x
and ubuntu/xenial64 image for Vagrantfile

Change-Id: Ifa872e8cc7dbe05918434f2981846dc25650bdfe
Signed-off-by: Trinh Nguyen <dangtrinhnt@gmail.com>
This commit is contained in:
Trinh Nguyen 2018-09-18 10:31:32 +09:00
parent 02f21b71e0
commit e733c84dba
2 changed files with 8 additions and 4 deletions

View File

@ -54,7 +54,7 @@ fi
SCRIPT
config.vm.define "searchlight-ubuntu" do |ubuntu|
ubuntu.vm.box = "ubuntu/trusty64"
ubuntu.vm.box = "ubuntu/xenial64"
ubuntu.vm.network :private_network, ip: "192.168.27.100"

View File

@ -7,10 +7,10 @@ HOST_IP=192.168.27.101
SERVICE_HOST=$HOST_IP
ADMIN_PASSWORD=devstack
MYSQL_PASSWORD=devstack
RABBIT_PASSWORD=devstack
MYSQL_PASSWORD=$ADMIN_PASSWORD
RABBIT_PASSWORD=$ADMIN_PASSWORD
SERVICE_PASSWORD=$ADMIN_PASSWORD
SERVICE_TOKEN=devstack
SERVICE_TOKEN=$ADMIN_PASSWORD
# Logging
LOGFILE=$DEST/logs/stack.sh.log
@ -18,6 +18,10 @@ VERBOSE=True
ENABLE_DEBUG_LOG_LEVEL=True
ENABLE_VERBOSE_LOG_LEVEL=True
# ElasticSearch version
# Currently, only ElasticSearch 2.x and 5.x are supported
ELASTICSEARCH_VERSION=5.6.11
# Enable Searchlight plugin
enable_plugin searchlight https://git.openstack.org/openstack/searchlight master