Skip to content

Commit

Permalink
qat: set AppArmorProfile and drop AppArmor annotations
Browse files Browse the repository at this point in the history
It's been GA since k8s 1.30 so we can enable it unconditionally
starting with our 0.32 release.

Signed-off-by: Mikko Ylinen <[email protected]>
  • Loading branch information
mythi committed Sep 30, 2024
1 parent 7c365e8 commit b06ad59
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 53 deletions.
2 changes: 0 additions & 2 deletions cmd/qat_plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,6 @@ There's also a possibility for a node specific congfiguration through passing a

Existing DaemonSet annotations can be updated through CR annotations in [deviceplugin_v1_qatdeviceplugin.yaml](../../deployments/operator/samples/deviceplugin_v1_qatdeviceplugin.yaml).

By default, the operator based deployment sets AppArmor policy to `"unconfined"` but this can be overridden by setting the AppArmor annotation to a new value in the CR annotations.

For non-operator plugin deployments such annotations can be dropped with the kustomization if required.

### Verify Plugin Registration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,6 @@ apiVersion: deviceplugin.intel.com/v1
kind: DlbDevicePlugin
metadata:
name: dlbdeviceplugin-sample
# example apparmor annotation
# see more details here:
# - https://kubernetes.io/docs/tutorials/clusters/apparmor/#securing-a-pod
# - https://github.com/intel/intel-device-plugins-for-kubernetes/issues/381
# annotations:
# container.apparmor.security.beta.kubernetes.io/intel-dlb-plugin: unconfined
spec:
image: intel/intel-dlb-plugin:0.31.0
initImage: intel/intel-dlb-initcontainer:0.31.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,6 @@ apiVersion: deviceplugin.intel.com/v1
kind: QatDevicePlugin
metadata:
name: qatdeviceplugin-sample
# example apparmor annotation
# see more details here:
# - https://kubernetes.io/docs/tutorials/clusters/apparmor/#securing-a-pod
# - https://github.com/intel/intel-device-plugins-for-kubernetes/issues/381
# annotations:
# container.apparmor.security.beta.kubernetes.io/intel-qat-plugin: unconfined
spec:
image: intel/intel-qat-plugin:0.31.0
initImage: intel/intel-qat-initcontainer:0.31.0
Expand Down
6 changes: 2 additions & 4 deletions deployments/qat_plugin/base/intel-qat-plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ metadata:
name: intel-qat-plugin
labels:
app: intel-qat-plugin
annotations:
container.apparmor.security.beta.kubernetes.io/intel-qat-plugin: unconfined
spec:
selector:
matchLabels:
Expand All @@ -19,8 +17,6 @@ spec:
metadata:
labels:
app: intel-qat-plugin
annotations:
container.apparmor.security.beta.kubernetes.io/intel-qat-plugin: unconfined
spec:
automountServiceAccountToken: false
containers:
Expand All @@ -32,6 +28,8 @@ spec:
fieldPath: spec.nodeName
image: intel/intel-qat-plugin:devel
securityContext:
appArmorProfile:
type: "Unconfined"
seLinuxOptions:
type: "container_device_plugin_t"
readOnlyRootFilesystem: true
Expand Down
13 changes: 0 additions & 13 deletions pkg/controllers/qat/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,8 @@ func (c *controller) Upgrade(ctx context.Context, obj client.Object) bool {
func (c *controller) NewDaemonSet(rawObj client.Object) *apps.DaemonSet {
devicePlugin := rawObj.(*devicepluginv1.QatDevicePlugin)

annotations := devicePlugin.ObjectMeta.DeepCopy().Annotations

daemonSet := deployments.QATPluginDaemonSet()
daemonSet.Name = controllers.SuffixedName(daemonSet.Name, devicePlugin.Name)
daemonSet.Annotations = annotations
daemonSet.Spec.Template.Annotations = annotations

if devicePlugin.Spec.Tolerations != nil {
daemonSet.Spec.Template.Spec.Tolerations = devicePlugin.Spec.Tolerations
Expand All @@ -107,15 +103,6 @@ func (c *controller) NewDaemonSet(rawObj client.Object) *apps.DaemonSet {
func (c *controller) UpdateDaemonSet(rawObj client.Object, ds *apps.DaemonSet) (updated bool) {
dp := rawObj.(*devicepluginv1.QatDevicePlugin)

// Update only existing daemonset annotations
for k, v := range ds.ObjectMeta.Annotations {
if v2, ok := dp.ObjectMeta.Annotations[k]; ok && v2 != v {
ds.ObjectMeta.Annotations[k] = v2
ds.Spec.Template.Annotations[k] = v2
updated = true
}
}

if ds.Spec.Template.Spec.Containers[0].Image != dp.Spec.Image {
ds.Spec.Template.Spec.Containers[0].Image = dp.Spec.Image
updated = true
Expand Down
6 changes: 3 additions & 3 deletions pkg/controllers/qat/controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ func (c *controller) newDaemonSetExpected(rawObj client.Object) *apps.DaemonSet
devicePlugin := rawObj.(*devicepluginv1.QatDevicePlugin)
yes := true
no := false
pluginAnnotations := devicePlugin.ObjectMeta.DeepCopy().Annotations
maxUnavailable := intstr.FromInt(1)
maxSurge := intstr.FromInt(0)

Expand All @@ -54,7 +53,6 @@ func (c *controller) newDaemonSetExpected(rawObj client.Object) *apps.DaemonSet
Labels: map[string]string{
"app": appLabel,
},
Annotations: pluginAnnotations,
},
Spec: apps.DaemonSetSpec{
Selector: &metav1.LabelSelector{
Expand All @@ -74,7 +72,6 @@ func (c *controller) newDaemonSetExpected(rawObj client.Object) *apps.DaemonSet
Labels: map[string]string{
"app": appLabel,
},
Annotations: pluginAnnotations,
},
Spec: v1.PodSpec{
AutomountServiceAccountToken: &no,
Expand All @@ -95,6 +92,9 @@ func (c *controller) newDaemonSetExpected(rawObj client.Object) *apps.DaemonSet
Image: devicePlugin.Spec.Image,
ImagePullPolicy: "IfNotPresent",
SecurityContext: &v1.SecurityContext{
AppArmorProfile: &v1.AppArmorProfile{
Type: "unconfined",
},
SELinuxOptions: &v1.SELinuxOptions{
Type: "container_device_plugin_t",
},
Expand Down
19 changes: 0 additions & 19 deletions test/envtest/qatdeviceplugin_controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,9 @@ var _ = Describe("QatDevicePlugin Controller", func() {
Name: "qatdeviceplugin-test",
}

annotations := map[string]string{
"container.apparmor.security.beta.kubernetes.io/intel-qat-plugin": "unconfined",
}

toCreate := &devicepluginv1.QatDevicePlugin{
ObjectMeta: metav1.ObjectMeta{
Name: key.Name,
Annotations: annotations,
},
Spec: spec,
}
Expand All @@ -80,20 +75,6 @@ var _ = Describe("QatDevicePlugin Controller", func() {
Expect(ds.Spec.Template.Spec.NodeSelector).To(Equal(spec.NodeSelector))
Expect(ds.Spec.Template.Spec.Tolerations).To(HaveLen(0))

By("copy annotations successfully")
Expect(&(fetched.Annotations) == &annotations).ShouldNot(BeTrue())
Eventually(fetched.Annotations).Should(Equal(annotations))

By("updating annotations successfully")
updatedAnnotations := map[string]string{"key": "value"}
fetched.Annotations = updatedAnnotations
Expect(k8sClient.Update(context.Background(), fetched)).Should(Succeed())
updated := &devicepluginv1.QatDevicePlugin{}
Eventually(func() map[string]string {
_ = k8sClient.Get(context.Background(), key, updated)
return updated.Annotations
}, timeout, interval).Should(Equal(updatedAnnotations))

By("updating QatDevicePlugin successfully")
updatedImage := "updated-qat-testimage"
updatedInitImage := "updated-qat-testinitimage"
Expand Down

0 comments on commit b06ad59

Please sign in to comment.