This is an automated email from the ASF dual-hosted git repository.

laszlog pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/impala.git

commit b17f22048aadd941326dc46904b93dd0a177ca0e
Author: Laszlo Gaal <[email protected]>
AuthorDate: Mon May 5 18:52:27 2025 +0200

    IMPALA-14029: Add Kerberos utilities to Docker image build
    
    The Kerberos utility package was missing from the OS package list of
    the Docker container build when the base image was detected being
    a hardened Wolfi-based image. This prevented Impala coordinators from
    renewing their Kerberos tickets in containerized and Kerberized
    environments.
    
    This patch adds the Kerberos utility package to the list of installed
    packages for such minimal containers.
    
    Change-Id: I84f295ac8ae4c000868abff0342b922beb141b5b
    Reviewed-on: http://gerrit.cloudera.org:8080/22854
    Reviewed-by: Norbert Luksa <[email protected]>
    Tested-by: Laszlo Gaal <[email protected]>
---
 docker/install_os_packages.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/docker/install_os_packages.sh b/docker/install_os_packages.sh
index d387e5097..c8949c247 100755
--- a/docker/install_os_packages.sh
+++ b/docker/install_os_packages.sh
@@ -221,6 +221,7 @@ elif [[ $DISTRIBUTION == Chainguard ]]; then
     localedef \
     cyrus-sasl \
     krb5-libs \
+    krb5 \
     openssl \
     openldap-dev \
     openjdk-${JAVA_VERSION}-jre \

Reply via email to