Change Apache Kafka download site

Currently, monasca-analytics's devstack-plugin downloads
Apache Kafka from "ftp.riken.jp".
It is better to use "archive.apache.org" instead of "ftp.riken.jp".
That archive site is also used in other projects(e.g. monasca-api).

Change-Id: I9be43c052ca46ffec5ed6a1ffe3278b9e0325efb
This commit is contained in:
Daisuke Fujita 2019-01-18 06:28:32 +00:00
parent 0eb8e9dc2c
commit fb9f2a2ec6
1 changed files with 1 additions and 1 deletions

View File

@ -54,4 +54,4 @@ KAFKA_DIR="/opt/kafka"
KAFKA_DOWNLOAD="$KAFKA_DIR/download"
KAFKA_VERSION=${KAFKA_VERSION:-${SCALA_VERSION}-${BASE_KAFKA_VERSION}}
KAFKA_TARBALL="kafka_$KAFKA_VERSION.tgz"
KAFKA_URL="http://ftp.riken.jp/net/apache/kafka/$BASE_KAFKA_VERSION/$KAFKA_TARBALL"
KAFKA_URL="https://archive.apache.org/dist/kafka/$BASE_KAFKA_VERSION/$KAFKA_TARBALL"