Skip to content

Commit 908733e

Browse files
committed
Update non-pom versions to 2.8.0
1 parent 568728c commit 908733e

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

docs/_config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ kramdown:
77
# The full version string
88
# Used to match the version string portion of file paths, URLs, and dependency versions
99
# e.g. client jar path,
10-
ALLUXIO_VERSION_STRING: 2.8.0-SNAPSHOT
10+
ALLUXIO_VERSION_STRING: 2.8.0
1111
# We must inline the version string (e.g., "1.4.0-SNAPSHOT") rather than using the macro of Alluxio version.
1212
# Otherwise the macro name remains in the output.
13-
ALLUXIO_CLIENT_JAR_PATH: /<PATH_TO_ALLUXIO>/client/alluxio-2.8.0-SNAPSHOT-client.jar
13+
ALLUXIO_CLIENT_JAR_PATH: /<PATH_TO_ALLUXIO>/client/alluxio-2.8.0-client.jar
1414
# For release branches, this should be the Alluxio version in the form of <major>.<minor>, e.g. both 1.5.0 and 1.5.0-RC1 should use "1.5"
1515
# For master branch, this should be "edge"
1616
# This should be used to reference versioned pages that are not relative to the docs/ directory

integration/dataproc/alluxio-dataproc.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ readonly SPARK_HOME="${SPARK_HOME:-"/usr/lib/spark"}"
2323
readonly HIVE_HOME="${HIVE_HOME:-"/usr/lib/hive"}"
2424
readonly HADOOP_HOME="${HADOOP_HOME:-"/usr/lib/hadoop"}"
2525
readonly PRESTO_HOME="$(/usr/share/google/get_metadata_value attributes/alluxio_presto_home || echo "/usr/lib/presto")"
26-
readonly ALLUXIO_VERSION="2.8.0-SNAPSHOT"
26+
readonly ALLUXIO_VERSION="2.8.0"
2727
readonly ALLUXIO_DOWNLOAD_URL="https://downloads.alluxio.io/downloads/files/${ALLUXIO_VERSION}/alluxio-${ALLUXIO_VERSION}-bin.tar.gz"
2828
readonly ALLUXIO_HOME="/opt/alluxio"
2929
readonly ALLUXIO_SITE_PROPERTIES="${ALLUXIO_HOME}/conf/alluxio-site.properties"

integration/docker/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ RUN cd /alluxio-csi && \
2727
# See - https://github.com/moby/moby/issues/35525
2828
FROM alpine:3.10.2 AS alluxio-extractor
2929
# Note that downloads for *-SNAPSHOT tarballs are not available.
30-
ARG ALLUXIO_TARBALL=http://downloads.alluxio.io/downloads/files/2.8.0-SNAPSHOT/alluxio-2.8.0-SNAPSHOT-bin.tar.gz
30+
ARG ALLUXIO_TARBALL=http://downloads.alluxio.io/downloads/files/2.8.0/alluxio-2.8.0-bin.tar.gz
3131
# (Alert):It's not recommended to set this Argument to true, unless you know exactly what you are doing
3232
ARG ENABLE_DYNAMIC_USER=false
3333

integration/docker/Dockerfile-dev

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ RUN cd /alluxio-csi && \
3030
# See - https://github.com/moby/moby/issues/35525
3131
FROM alpine:3.10.2 AS alluxio-extractor
3232
# Note that downloads for *-SNAPSHOT tarballs are not available.
33-
ARG ALLUXIO_TARBALL=http://downloads.alluxio.io/downloads/files/2.8.0-SNAPSHOT/alluxio-2.8.0-SNAPSHOT-bin.tar.gz
33+
ARG ALLUXIO_TARBALL=http://downloads.alluxio.io/downloads/files/2.8.0/alluxio-2.8.0-bin.tar.gz
3434
# (Alert):It's not recommended to set this Argument to true, unless you know exactly what you are doing
3535
ARG ENABLE_DYNAMIC_USER=false
3636

integration/emr/alluxio-emr.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ readonly ALLUXIO_HOME="/opt/alluxio"
1919
readonly ALLUXIO_SITE_PROPERTIES="${ALLUXIO_HOME}/conf/alluxio-site.properties"
2020
readonly AWS_SHUTDOWN_ACTIONS_DIR="/mnt/var/lib/instance-controller/public/shutdown-actions"
2121
readonly HADOOP_CONF="/etc/hadoop/conf"
22-
readonly ALLUXIO_VERSION="2.8.0-SNAPSHOT"
22+
readonly ALLUXIO_VERSION="2.8.0"
2323
readonly ALLUXIO_DOWNLOAD_URL="https://downloads.alluxio.io/downloads/files/${ALLUXIO_VERSION}/alluxio-${ALLUXIO_VERSION}-bin.tar.gz"
2424

2525
####################

integration/kubernetes/helm-chart/alluxio/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ fullnameOverride: alluxio
1717

1818
# Docker Image
1919
image: alluxio/alluxio
20-
imageTag: 2.8.0-SNAPSHOT
20+
imageTag: 2.8.0
2121
imagePullPolicy: IfNotPresent
2222

2323
# Security Context

libexec/alluxio-config.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ this="${config_bin}/${script}"
2727

2828
# This will set the default installation for a tarball installation while os distributors can
2929
# set system installation locations.
30-
VERSION=2.8.0-SNAPSHOT
30+
VERSION=2.8.0
3131
ALLUXIO_HOME=$(dirname $(dirname "${this}"))
3232
ALLUXIO_ASSEMBLY_CLIENT_JAR="${ALLUXIO_HOME}/assembly/client/target/alluxio-assembly-client-${VERSION}-jar-with-dependencies.jar"
3333
ALLUXIO_ASSEMBLY_SERVER_JAR="${ALLUXIO_HOME}/assembly/server/target/alluxio-assembly-server-${VERSION}-jar-with-dependencies.jar"

0 commit comments

Comments
 (0)