You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@impala.apache.org by bh...@apache.org on 2019/08/04 00:02:25 UTC

[impala] branch master updated: Add krb5 client utilities to the containers

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 1dcd2eb  Add krb5 client utilities to the containers
1dcd2eb is described below

commit 1dcd2eb959b5bac642e9c0ccf512f2d68a51dd12
Author: Bharath Vissapragada <bh...@cloudera.com>
AuthorDate: Sat Aug 3 08:43:21 2019 -0700

    Add krb5 client utilities to the containers
    
    Some components depend on these utils (kinit, kdestroy..) for ticket
    cache lifecycle management. These are also useful for debugging
    in general, for example, to test KDC connectivity etc.
    
    Local docker image size increased from 820MB to 865MB for a release
    build (=5.4%).
    
    Change-Id: I9c9e9ab5b027ea9d223928280bc94f2ed9f701d3
    Reviewed-on: http://gerrit.cloudera.org:8080/13997
    Reviewed-by: Tim Armstrong <ta...@cloudera.com>
    Reviewed-by: Bharath Vissapragada <bh...@cloudera.com>
    Tested-by: Bharath Vissapragada <bh...@cloudera.com>
---
 docker/impala_base/Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docker/impala_base/Dockerfile b/docker/impala_base/Dockerfile
index 203f42b..d43cc7a 100644
--- a/docker/impala_base/Dockerfile
+++ b/docker/impala_base/Dockerfile
@@ -23,7 +23,7 @@ FROM ubuntu:16.04
 RUN apt-get update && \
   apt-get install -y openjdk-8-jre-headless \
   libsasl2-2 libsasl2-modules libsasl2-modules-gssapi-mit \
-  tzdata liblzo2-2 && \
+  tzdata liblzo2-2 krb5-user && \
   apt-get clean && \
   rm -rf /var/lib/apt/lists/*