devstack: Use 2.4.6 as elasticsearch version

Update to the latest available 2.4.x version.

Change-Id: I3ffdcc8e2a6bfc9d390ac0e59c93d0b8d4f3cfd9
This commit is contained in:
Thomas Bechtold 2019-01-10 14:45:41 +01:00
parent e07786bfa5
commit c6d28fe2bf
2 changed files with 2 additions and 2 deletions

View File

@ -399,7 +399,7 @@ function install_elasticsearch {
echo_summary "Installing ElasticSearch ${ELASTICSEARCH_VERSION}"
local es_tarball=elasticsearch-${ELASTICSEARCH_VERSION}.tar.gz
local es_url=http://download.elasticsearch.org/elasticsearch/elasticsearch/${es_tarball}
local es_url=https://download.elastic.co/elasticsearch/release/org/elasticsearch/distribution/tar/elasticsearch/${ELASTICSEARCH_VERSION}/${es_tarball}
local es_dest
es_dest=`get_extra_file ${es_url}`

View File

@ -29,7 +29,7 @@ enable_service monasca-log-agent
# libraries/frameworks/projects monasca-log requires to install itself
KIBANA_VERSION=${KIBANA_VERSION:-4.6.3-linux-x86_64}
LOGSTASH_VERSION=${LOGSTASH_VERSION:-2.4.1}
ELASTICSEARCH_VERSION=${ELASTICSEARCH_VERSION:-2.4.2}
ELASTICSEARCH_VERSION=${ELASTICSEARCH_VERSION:-2.4.6}
LOGSTASH_OUTPUT_MONASCA_VERSION=${LOGSTASH_OUTPUT_MONASCA_VERSION:-1.0.4}
NODE_JS_VERSION=${NODE_JS_VERSION:-"4.0.0"}
NVM_VERSION=${NVM_VERSION:-"0.33.5"}