Ztunnel
Ztunnel provides an experimental implementation of the ztunnel component of ambient mesh.
Note: istio/ztunnel
is currently intended for experimental usage only.
Building on Non-linux/x86_64
The Ztunnel build enables the fips
feature by default, which in turn enables the fips
feature
on BoringSSL.
FIPS has
strict requirements
to ensure that compliance is granted only to the exact binary tested.
FIPS compliance was granted
to an old version of BoringSSL that was tested with Clang 7.0.1
.
Installing Clang 7.0.1
on modern environments is at best difficult. For linux
x86_64
, we work around
this problem by shipping the pre-built binaries underboringssl-fips/linux_x86_64
. We then tell the BoringSSL libraries
to use this path by setting the BORING_BSSL_PATH
environment variable in .cargo/config.toml
.
For non-linux/x86_64 platforms, you can disable FIPS by doing the following:
- Run cargo with the
--no-default-features
flag (e.g.cargo build --no-default-features
). - Comment out the
BORING_BSSL_*
environment variables in.cargo/config.toml
. We're actively looking into ways to avoid this step, so it should not be needed in the future.
Some IDEs (such as the Intellij-series) do not support
globally applying arguments to cargo. In this case, it is probably easier to remove fips
as a default feature in
Cargo.toml
.
# ...
[features]
default = []
# ...