Skip to content

Commit 2fa54f2

Browse files
committed
Update version to 2.7.4 in non pom files
1 parent ff40c95 commit 2fa54f2

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.7.4-SNAPSHOT
10+
ALLUXIO_VERSION_STRING: 2.7.4
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.7.4-SNAPSHOT-client.jar
13+
ALLUXIO_CLIENT_JAR_PATH: /<PATH_TO_ALLUXIO>/client/alluxio-2.7.4-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.7.4-SNAPSHOT"
26+
readonly ALLUXIO_VERSION="2.7.4"
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
@@ -21,7 +21,7 @@ RUN cd /alluxio-csi && \
2121
# For production use, we use alpine as base image to minimize alluxio image size.
2222
FROM alpine:3.10.2 AS final
2323
# Note that downloads for *-SNAPSHOT tarballs are not available.
24-
ARG ALLUXIO_TARBALL=http://downloads.alluxio.io/downloads/files/2.7.4-SNAPSHOT/alluxio-2.7.4-SNAPSHOT-bin.tar.gz
24+
ARG ALLUXIO_TARBALL=http://downloads.alluxio.io/downloads/files/2.7.4/alluxio-2.7.4-bin.tar.gz
2525
# (Alert):It's not recommended to set this Argument to true, unless you know exactly what you are doing
2626
ARG ENABLE_DYNAMIC_USER=false
2727

integration/docker/Dockerfile-dev

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ RUN cd /alluxio-csi && \
2222
FROM centos:7 AS final
2323

2424
# Note that downloads for *-SNAPSHOT tarballs are not available
25-
ARG ALLUXIO_TARBALL=http://downloads.alluxio.io/downloads/files/2.7.4-SNAPSHOT/alluxio-2.7.4-SNAPSHOT-bin.tar.gz
25+
ARG ALLUXIO_TARBALL=http://downloads.alluxio.io/downloads/files/2.7.4/alluxio-2.7.4-bin.tar.gz
2626
# (Alert):It's not recommended to set this Argument to true, unless you know exactly what you are doing
2727
ARG ENABLE_DYNAMIC_USER=false
2828

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.7.4-SNAPSHOT"
22+
readonly ALLUXIO_VERSION="2.7.4"
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.7.4-SNAPSHOT
20+
imageTag: 2.7.4
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.7.4-SNAPSHOT
30+
VERSION=2.7.4
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)