What's new in Security Profiles Operator v0.4.0
Authors: Jakub Hrozek, Juan Antonio Osorio, Paulo Gomes, Sascha Grunert
The is an out-of-tree Kubernetes enhancement to make the management of , released v0.4.0 of the operator, which contains a ton of new features, fixes and usability improvements.
What's new
It has been a while since the last release of the operator. We added new features, fine-tuned existing ones and reworked our documentation in 290 commits over the past half year.
One of the highlights is that we're now able to record seccomp and SELinux profiles using the operators . This allows us to reduce the dependencies required for profile recording to have ProfileRecording CRD as well as their corresponding label selectors. The log enricher itself can be also used to gather meaningful insights about seccomp and SELinux messages of a node. Checkout the official documentation to learn more about it.
seccomp related improvements
Beside the log enricher based recording we now offer an alternative to record
seccomp profiles by utilizing enableBpfRecorder to true
. This results in running a
dedicated container, which ships a custom bpf module on every node to collect
the syscalls for containers. It even supports older Kernel versions which do not
expose the amd64 and arm64
architectures. Checkout
to see it in action. By the way, we now add the seccomp profile architecture of
the recorder host to the recorded profile as well.
We also graduated the seccomp profile API from v1alpha1
to v1beta1
. This
aligns with our overall goal to stabilize the CRD APIs over time. The only thing
which has changed is that the seccomp profile type Architectures
now points to
[]Arch
instead of []*Arch
.
SELinux enhancements
Managing SELinux policies (an equivalent to using semodule
that
you would normally call on a single server) is not done by SPO
itself, but by another container called selinuxd to provide better
isolation. This release switched to using selinuxd containers from
a personal repository to images located under .
The selinuxd repository has moved as well to .
Please note that selinuxd links dynamically to libsemanage
and mounts the
SELinux directories from the nodes, which means that the selinuxd container
must be running the same distribution as the cluster nodes. SPO defaults
to using CentOS-8 based containers, but we also build Fedora based ones.
If you are using another distribution and would like us to add support for
it, please file .
Profile Recording
This release adds support for recording of SELinux profiles.
The recording itself is managed via an instance of a ProfileRecording
Custom
Resource as seen in an
in our repository. From the user's point of view it works pretty much the same
as recording of seccomp profiles.
Under the hood, to know what the workload is doing SPO installs a special
permissive policy called
on startup which allows everything and logs all AVCs to audit.log
.
These AVC messages are scraped by the log enricher component and when
the recorded workload exits, the policy is created.
SELinuxProfile
CRD graduation
An v1alpha2
version of the SelinuxProfile
object has been introduced. This
removes the raw Common Intermediate Language (CIL) from the object itself and
instead adds a simple policy language to ease the writing and parsing
experience.
Alongside, a RawSelinuxProfile
object was also introduced. This contains a
wrapped and raw representation of the policy. This was intended for folks to be
able to take their existing policies into use as soon as possible. However, on
validations are done here.
AppArmor support
This version introduces the initial support for AppArmor, allowing users to load and
unload AppArmor profiles into cluster nodes by using the new
To enable AppArmor support use the
The operator now exposes metrics, which are described in detail in
our new .
We decided to secure the metrics retrieval process by using
spo-metrics-client cluster role (and binding) to retrieve the
metrics from within the cluster. If you're using
,
then we provide an out of the box working
to access the metrics. Beside all those new features, we decided to restructure parts of the Security
Profiles Operator internally to make it better to debug and more robust. For
example, we now maintain an internal
by setting We also print the used Thank you for reading this update. We're looking forward to future enhancements
of the operator and would love to get your feedback about the latest release.
Feel free to reach out to us via the Kubernetes slack
for any feedback or question.Metrics
Debuggability and robustness
verbosity
from 0
to 1
.libseccomp
and libbpf
versions on startup, as well as
expose CPU and memory profiling endpoints for each container via the
.
Dedicated liveness and startup probes inside of the operator daemon will now
additionally improve the life cycle of the operator.Conclusion