fix(build): add libsasl2-modules-gssapi-mit as deps
Before this fix, the kerberos authentication in kafka will report the
following errors:
```
...
{{sasl_auth_error,{sass_nomech,<<"SASL(-4): no mechanism available: No worthy mechs found">>}},
```
This commit is contained in:
parent
5f7e938b20
commit
b84623d640
2
build
2
build
|
|
@ -380,7 +380,7 @@ make_docker() {
|
||||||
## extra_deps is a comma separated list of debian 11 package names
|
## extra_deps is a comma separated list of debian 11 package names
|
||||||
local extra_deps=''
|
local extra_deps=''
|
||||||
if [[ "$PROFILE" = *enterprise* ]]; then
|
if [[ "$PROFILE" = *enterprise* ]]; then
|
||||||
extra_deps='libsasl2-2'
|
extra_deps='libsasl2-2,libsasl2-modules-gssapi-mit'
|
||||||
fi
|
fi
|
||||||
echo '_build' >> ./.dockerignore
|
echo '_build' >> ./.dockerignore
|
||||||
set -x
|
set -x
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue