We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84b4f20 commit 302da9eCopy full SHA for 302da9e
test/e2e/cluster_extension_install_test.go
@@ -1027,8 +1027,17 @@ func TestClusterExtensionRecoversFromExistingDeploymentWhenFailureFixed(t *testi
1027
ImagePullPolicy: corev1.PullAlways,
1028
Name: "busybox",
1029
SecurityContext: &corev1.SecurityContext{
1030
- RunAsNonRoot: ptr.To(true),
1031
- RunAsUser: ptr.To(int64(1000)),
+ RunAsNonRoot: ptr.To(true),
+ RunAsUser: ptr.To(int64(1000)),
1032
+ AllowPrivilegeEscalation: ptr.To(false),
1033
+ Capabilities: &corev1.Capabilities{
1034
+ Drop: []corev1.Capability{
1035
+ "ALL",
1036
+ },
1037
1038
+ SeccompProfile: &corev1.SeccompProfile{
1039
+ Type: corev1.SeccompProfileTypeRuntimeDefault,
1040
1041
},
1042
1043
0 commit comments