Skip to content

Commit 01298b9

Browse files
committed
chore: changelog / lint fix
1 parent 4e4454c commit 01298b9

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ All notable changes to this project will be documented in this file.
8888
- zookeeper: Enable custom versions ([#1169]).
8989
- opa: Enable custom versions ([#1170]).
9090
- use custom product versions for Hadoop, HBase, Phoenix, hbase-operator-tools, Druid, Hive and Spark ([#1173]).
91+
- hadoop: Separate Dockerfiles for Hadoop build and HDFS image ([#1186]).
9192

9293
### Fixed
9394

@@ -202,6 +203,7 @@ All notable changes to this project will be documented in this file.
202203
[#1174]: https://github.com/stackabletech/docker-images/pull/1174
203204
[#1179]: https://github.com/stackabletech/docker-images/pull/1179
204205
[#1180]: https://github.com/stackabletech/docker-images/pull/1180
206+
[#1186]: https://github.com/stackabletech/docker-images/pull/1186
205207

206208
## [25.3.0] - 2025-03-21
207209

hadoop/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ rm -rf /var/cache/yum
115115
# It is so non-root users (as we are) can mount a FUSE device and let other users access it
116116
echo "user_allow_other" > /etc/fuse.conf
117117

118-
ln -s /stackable/hadoop-${HADOOP_HADOOP}-stackable${RELEASE} /stackable/hadoop
118+
ln -s "/stackable/hadoop-${HADOOP_HADOOP}-stackable${RELEASE}" /stackable/hadoop
119119

120120
# async-profiler
121121
ARCH="${TARGETARCH/amd64/x64}"
@@ -128,8 +128,8 @@ chmod -x "/stackable/jmx/jmx_prometheus_javaagent-${JMX_EXPORTER}.jar"
128128
ln -s "/stackable/jmx/jmx_prometheus_javaagent-${JMX_EXPORTER}.jar" /stackable/jmx/jmx_prometheus_javaagent.jar
129129

130130
# Set correct permissions and ownerships
131-
chown --recursive ${STACKABLE_USER_UID}:0 /stackable/hadoop /stackable/jmx /stackable/async-profiler /stackable/async-profiler-${ASYNC_PROFILER}-${TARGETOS}-${ARCH}
132-
chmod --recursive g=u /stackable/jmx /stackable/async-profiler /stackable/hadoop-${HADOOP_HADOOP}-stackable${RELEASE}
131+
chown --recursive ${STACKABLE_USER_UID}:0 /stackable/hadoop /stackable/jmx /stackable/async-profiler "/stackable/async-profiler-${ASYNC_PROFILER}-${TARGETOS}-${ARCH}"
132+
chmod --recursive g=u /stackable/jmx /stackable/async-profiler "/stackable/hadoop-${HADOOP_HADOOP}-stackable${RELEASE}"
133133
EOF
134134

135135
# ----------------------------------------

0 commit comments

Comments
 (0)