Skip to content

Commit b0f24a9

Browse files
authored
fix(testing-tools): move Kerberos pkgs to base image (#1389)
1 parent 273d047 commit b0f24a9

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ All notable changes to this project will be documented in this file.
3030
### Fixed
3131

3232
- testing-tools: Re-add `pytest` Python package as well as `diffutils` package ([#1388]).
33+
- testing-tools: Move Kerberos packages from testing-tools/hive to parent since they provide `kinit` which is needed in other tests too (ex. HBase). ([#1389]).
3334

3435
[#1336]: https://github.com/stackabletech/docker-images/pull/1336
3536
[#1337]: https://github.com/stackabletech/docker-images/pull/1337
@@ -45,6 +46,7 @@ All notable changes to this project will be documented in this file.
4546
[#1386]: https://github.com/stackabletech/docker-images/pull/1386
4647
[#1387]: https://github.com/stackabletech/docker-images/pull/1387
4748
[#1388]: https://github.com/stackabletech/docker-images/pull/1388
49+
[#1389]: https://github.com/stackabletech/docker-images/pull/1389
4850

4951
## [25.11.0] - 2025-11-07
5052

testing-tools/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@ RUN <<EOF
4848
microdnf update
4949

5050
microdnf install \
51+
`# This installs kinit needed in kerberos tests.` \
52+
krb5-workstation \
53+
krb5-devel
5154
gcc \
5255
make \
5356
pkg-config \

testing-tools/hive/Dockerfile

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,6 @@ COPY testing-tools/hive/requirements.txt /stackable/hive/requirements.txt
2525
RUN <<EOF
2626
microdnf update
2727

28-
microdnf install \
29-
krb5-workstation \
30-
krb5-devel
31-
3228
microdnf clean all
3329
rm -rf /var/cache/yum
3430

0 commit comments

Comments
 (0)