This is an automated email from the ASF dual-hosted git repository.
adoroszlai pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ozone.git
The following commit(s) were added to refs/heads/master by this push:
new d33f9943a5e HDDS-15177. Wait for healthy KDC before starting Ozone in
xcompat tests (#10194)
d33f9943a5e is described below
commit d33f9943a5e5b5e47c43fd7476be6776622dda11
Author: Sergey Soldatov <[email protected]>
AuthorDate: Thu May 7 21:30:28 2026 -0700
HDDS-15177. Wait for healthy KDC before starting Ozone in xcompat tests
(#10194)
---
hadoop-ozone/dist/pom.xml | 2 +-
hadoop-ozone/dist/src/main/compose/xcompat/new-cluster.yaml | 3 +++
hadoop-ozone/dist/src/main/compose/xcompat/old-cluster.yaml | 3 +++
3 files changed, 7 insertions(+), 1 deletion(-)
diff --git a/hadoop-ozone/dist/pom.xml b/hadoop-ozone/dist/pom.xml
index cdbd5a48735..13d0e082380 100644
--- a/hadoop-ozone/dist/pom.xml
+++ b/hadoop-ozone/dist/pom.xml
@@ -30,7 +30,7 @@
<docker.hadoop.image.flavor />
<docker.ozone-runner.client.version>20260207-1-jdk8</docker.ozone-runner.client.version>
<docker.ozone-runner.version>20260206-2-jdk21</docker.ozone-runner.version>
-
<docker.ozone-testkr5b.image>ghcr.io/apache/ozone-testkrb5:20241129-1</docker.ozone-testkr5b.image>
+
<docker.ozone-testkr5b.image>ghcr.io/apache/ozone-testkrb5:20260507-1</docker.ozone-testkr5b.image>
<docker.ozone.image>apache/ozone</docker.ozone.image>
<!-- suffix appended to Ozone version to get Docker image version; only
used in xcompat test, to avoid old centos-based images -->
<docker.ozone.image.flavor>-rocky</docker.ozone.image.flavor>
diff --git a/hadoop-ozone/dist/src/main/compose/xcompat/new-cluster.yaml
b/hadoop-ozone/dist/src/main/compose/xcompat/new-cluster.yaml
index 3de29df026d..ff54b42d1c4 100644
--- a/hadoop-ozone/dist/src/main/compose/xcompat/new-cluster.yaml
+++ b/hadoop-ozone/dist/src/main/compose/xcompat/new-cluster.yaml
@@ -25,6 +25,9 @@ x-new-config:
- ../..:/opt/hadoop
- ../_keytabs:/etc/security/keytabs
- ./krb5.conf:/etc/krb5.conf
+ depends_on:
+ kdc:
+ condition: service_healthy
services:
kdc:
diff --git a/hadoop-ozone/dist/src/main/compose/xcompat/old-cluster.yaml
b/hadoop-ozone/dist/src/main/compose/xcompat/old-cluster.yaml
index e3df1b3dda0..c23b3133c8b 100644
--- a/hadoop-ozone/dist/src/main/compose/xcompat/old-cluster.yaml
+++ b/hadoop-ozone/dist/src/main/compose/xcompat/old-cluster.yaml
@@ -25,6 +25,9 @@ x-old-config:
- ../..:/opt/ozone
- ../_keytabs:/etc/security/keytabs
- ./krb5.conf:/etc/krb5.conf
+ depends_on:
+ kdc:
+ condition: service_healthy
services:
kdc:
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]