Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion hadoop-ozone/dist/src/main/compose/common/hadoop-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,15 @@ export OZONE_DIR=/opt/ozone
# shellcheck source=/dev/null
source "$COMPOSE_DIR/../testlib.sh"

for HADOOP_VERSION in 2.7.3 3.1.2 3.2.2 3.3.1; do
for HADOOP_VERSION in 2.7.3 3.1.2 3.2.2 3.3.5; do
export HADOOP_VERSION
export HADOOP_MAJOR_VERSION=${HADOOP_VERSION%%.*}
# Check if $HADOOP_VERSION starts with the prefix "3.3."
if [[ $HADOOP_VERSION == 3.3.* ]]; then
export HADOOP_IMAGE=apache/hadoop
else
export HADOOP_IMAGE=flokkr/hadoop
fi

docker-compose --ansi never --profile hadoop up -d nm rm

Expand Down
1 change: 0 additions & 1 deletion hadoop-ozone/dist/src/main/compose/ozone-ha/.env
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
# limitations under the License.

HDDS_VERSION=${hdds.version}
HADOOP_IMAGE=flokkr/hadoop
OZONE_RUNNER_VERSION=${docker.ozone-runner.version}
OZONE_RUNNER_IMAGE=apache/ozone-runner
OZONE_OPTS=
2 changes: 1 addition & 1 deletion hadoop-ozone/dist/src/main/compose/ozone/.env
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# limitations under the License.

HDDS_VERSION=${hdds.version}
HADOOP_IMAGE=flokkr/hadoop
HADOOP_IMAGE=apache/hadoop
OZONE_RUNNER_VERSION=${docker.ozone-runner.version}
OZONE_RUNNER_IMAGE=apache/ozone-runner
OZONE_OPTS=
4 changes: 2 additions & 2 deletions hadoop-ozone/dist/src/main/compose/ozonesecure-mr/.env
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
# limitations under the License.

HDDS_VERSION=${hdds.version}
HADOOP_IMAGE=flokkr/hadoop
HADOOP_VERSION=3.3.1
HADOOP_IMAGE=apache/hadoop
HADOOP_VERSION=3.3.5
OZONE_RUNNER_VERSION=${docker.ozone-runner.version}
OZONE_RUNNER_IMAGE=apache/ozone-runner
OZONE_TESTKRB5_IMAGE=${docker.ozone-testkr5b.image}
Expand Down