Skip to content

Commit 51f7e96

Browse files
committed
fix: update Kerberos KDC host to localhost in BigDataContainerFactory
- Changed `KERBY_KDC_HOST` environment variable from `kerby-kdc` to `localhost` to ensure proper local resolution.
1 parent fbbab2e commit 51f7e96

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

core/src/main/kotlin/org/openprojectx/bigdata/test/core/container/BigDataContainerFactory.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ internal class BigDataContainerFactory(
8282
.withNetworkAliases("kerby-kdc")
8383
.withServicePort(88, options.portBindings.hostPort(88, options.portBindings.kerberosKdc))
8484
.withEnv("KERBY_REALM", kerberos.realm)
85-
.withEnv("KERBY_KDC_HOST", "kerby-kdc")
85+
.withEnv("KERBY_KDC_HOST", "localhost")
8686
.withEnv("KERBY_KDC_BIND_HOST", "0.0.0.0")
8787
.withEnv("KERBY_CLIENT_KDC_HOST", "kerby-kdc")
8888
.withEnv("KERBY_CLIENT_DOMAIN", kerberos.domain)

0 commit comments

Comments
 (0)