@@ -196,7 +196,7 @@ func TestExtensions(t *testing.T) {
196
196
Config : runtime.RawExtension {
197
197
Raw : helpers .MarshalOrDie (ctrlcommon .NewIgnConfig ()),
198
198
},
199
- Extensions : []string {"wasm" , "ipsec" , "usbguard" , "kernel-devel" , "kerberos" , "sysstat" , "ksan-storage" },
199
+ Extensions : []string {"wasm" , "ipsec" , "usbguard" , "kernel-devel" , "kerberos" , "sysstat" },
200
200
},
201
201
}
202
202
@@ -212,8 +212,8 @@ func TestExtensions(t *testing.T) {
212
212
assert .Equal (t , node .Annotations [constants .CurrentMachineConfigAnnotationKey ], renderedConfig )
213
213
assert .Equal (t , node .Annotations [constants .MachineConfigDaemonStateAnnotationKey ], constants .MachineConfigDaemonStateDone )
214
214
215
- installedPackages := helpers .ExecCmdOnNode (t , cs , node , "chroot" , "/rootfs" , "rpm" , "-q" , "crun-wasm" , "libreswan" , "usbguard" , "kernel-devel" , "kernel-headers" , "krb5-workstation" , "libkadm5" , "sysstat" , "lvm2-lockd" , "sanlock" )
216
- expectedPackages := []string {"crun-wasm" , "libreswan" , "usbguard" , "kernel-devel" , "kernel-headers" , "krb5-workstation" , "libkadm5" , "sysstat" , "lvm2-lockd" , "sanlock" }
215
+ installedPackages := helpers .ExecCmdOnNode (t , cs , node , "chroot" , "/rootfs" , "rpm" , "-q" , "crun-wasm" , "libreswan" , "usbguard" , "kernel-devel" , "kernel-headers" , "krb5-workstation" , "libkadm5" , "sysstat" )
216
+ expectedPackages := []string {"crun-wasm" , "libreswan" , "usbguard" , "kernel-devel" , "kernel-headers" , "krb5-workstation" , "libkadm5" , "sysstat" }
217
217
for _ , v := range expectedPackages {
218
218
if ! strings .Contains (installedPackages , v ) {
219
219
t .Fatalf ("Node %s doesn't have expected extensions" , node .Name )
@@ -237,7 +237,7 @@ func TestExtensions(t *testing.T) {
237
237
assert .Equal (t , node .Annotations [constants .CurrentMachineConfigAnnotationKey ], oldMasterRenderedConfig )
238
238
assert .Equal (t , node .Annotations [constants .MachineConfigDaemonStateAnnotationKey ], constants .MachineConfigDaemonStateDone )
239
239
240
- installedPackages = helpers .ExecCmdOnNode (t , cs , node , "chroot" , "/rootfs" , "rpm" , "-qa" , "crun-wasm" , "libreswan" , "usbguard" , "kernel-devel" , "kernel-headers" , "krb5-workstation" , "libkadm5" , "sysstat" , "lvm2-lockd" , "sanlock" )
240
+ installedPackages = helpers .ExecCmdOnNode (t , cs , node , "chroot" , "/rootfs" , "rpm" , "-qa" , "crun-wasm" , "libreswan" , "usbguard" , "kernel-devel" , "kernel-headers" , "krb5-workstation" , "libkadm5" , "sysstat" )
241
241
for _ , v := range expectedPackages {
242
242
if strings .Contains (installedPackages , v ) {
243
243
t .Fatalf ("Node %s did not rollback successfully" , node .Name )
0 commit comments