Skip to content

Commit

Permalink
Update non-pom versions to 2.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Xenorith committed Apr 26, 2022
1 parent 568728c commit 908733e
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ kramdown:
# The full version string
# Used to match the version string portion of file paths, URLs, and dependency versions
# e.g. client jar path,
ALLUXIO_VERSION_STRING: 2.8.0-SNAPSHOT
ALLUXIO_VERSION_STRING: 2.8.0
# We must inline the version string (e.g., "1.4.0-SNAPSHOT") rather than using the macro of Alluxio version.
# Otherwise the macro name remains in the output.
ALLUXIO_CLIENT_JAR_PATH: /<PATH_TO_ALLUXIO>/client/alluxio-2.8.0-SNAPSHOT-client.jar
ALLUXIO_CLIENT_JAR_PATH: /<PATH_TO_ALLUXIO>/client/alluxio-2.8.0-client.jar
# 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"
# For master branch, this should be "edge"
# This should be used to reference versioned pages that are not relative to the docs/ directory
Expand Down
2 changes: 1 addition & 1 deletion integration/dataproc/alluxio-dataproc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ readonly SPARK_HOME="${SPARK_HOME:-"/usr/lib/spark"}"
readonly HIVE_HOME="${HIVE_HOME:-"/usr/lib/hive"}"
readonly HADOOP_HOME="${HADOOP_HOME:-"/usr/lib/hadoop"}"
readonly PRESTO_HOME="$(/usr/share/google/get_metadata_value attributes/alluxio_presto_home || echo "/usr/lib/presto")"
readonly ALLUXIO_VERSION="2.8.0-SNAPSHOT"
readonly ALLUXIO_VERSION="2.8.0"
readonly ALLUXIO_DOWNLOAD_URL="https://downloads.alluxio.io/downloads/files/${ALLUXIO_VERSION}/alluxio-${ALLUXIO_VERSION}-bin.tar.gz"
readonly ALLUXIO_HOME="/opt/alluxio"
readonly ALLUXIO_SITE_PROPERTIES="${ALLUXIO_HOME}/conf/alluxio-site.properties"
Expand Down
2 changes: 1 addition & 1 deletion integration/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ RUN cd /alluxio-csi && \
# See - https://github.com/moby/moby/issues/35525
FROM alpine:3.10.2 AS alluxio-extractor
# Note that downloads for *-SNAPSHOT tarballs are not available.
ARG ALLUXIO_TARBALL=http://downloads.alluxio.io/downloads/files/2.8.0-SNAPSHOT/alluxio-2.8.0-SNAPSHOT-bin.tar.gz
ARG ALLUXIO_TARBALL=http://downloads.alluxio.io/downloads/files/2.8.0/alluxio-2.8.0-bin.tar.gz
# (Alert):It's not recommended to set this Argument to true, unless you know exactly what you are doing
ARG ENABLE_DYNAMIC_USER=false

Expand Down
2 changes: 1 addition & 1 deletion integration/docker/Dockerfile-dev
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ RUN cd /alluxio-csi && \
# See - https://github.com/moby/moby/issues/35525
FROM alpine:3.10.2 AS alluxio-extractor
# Note that downloads for *-SNAPSHOT tarballs are not available.
ARG ALLUXIO_TARBALL=http://downloads.alluxio.io/downloads/files/2.8.0-SNAPSHOT/alluxio-2.8.0-SNAPSHOT-bin.tar.gz
ARG ALLUXIO_TARBALL=http://downloads.alluxio.io/downloads/files/2.8.0/alluxio-2.8.0-bin.tar.gz
# (Alert):It's not recommended to set this Argument to true, unless you know exactly what you are doing
ARG ENABLE_DYNAMIC_USER=false

Expand Down
2 changes: 1 addition & 1 deletion integration/emr/alluxio-emr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ readonly ALLUXIO_HOME="/opt/alluxio"
readonly ALLUXIO_SITE_PROPERTIES="${ALLUXIO_HOME}/conf/alluxio-site.properties"
readonly AWS_SHUTDOWN_ACTIONS_DIR="/mnt/var/lib/instance-controller/public/shutdown-actions"
readonly HADOOP_CONF="/etc/hadoop/conf"
readonly ALLUXIO_VERSION="2.8.0-SNAPSHOT"
readonly ALLUXIO_VERSION="2.8.0"
readonly ALLUXIO_DOWNLOAD_URL="https://downloads.alluxio.io/downloads/files/${ALLUXIO_VERSION}/alluxio-${ALLUXIO_VERSION}-bin.tar.gz"

####################
Expand Down
2 changes: 1 addition & 1 deletion integration/kubernetes/helm-chart/alluxio/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ fullnameOverride: alluxio

# Docker Image
image: alluxio/alluxio
imageTag: 2.8.0-SNAPSHOT
imageTag: 2.8.0
imagePullPolicy: IfNotPresent

# Security Context
Expand Down
2 changes: 1 addition & 1 deletion libexec/alluxio-config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ this="${config_bin}/${script}"

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

0 comments on commit 908733e

Please sign in to comment.