Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for unconfined (0.16 sec)

  1. pkg/kubelet/kuberuntime/helpers_linux_test.go

    		},
    		{
    			description:     "pod seccomp profile set to unconfined returns unconfined",
    			podSc:           &v1.PodSecurityContext{SeccompProfile: &v1.SeccompProfile{Type: v1.SeccompProfileTypeUnconfined}},
    			expectedProfile: unconfinedProfile,
    		},
    		{
    			description:     "container seccomp profile set to unconfined returns unconfined",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/helpers_test.go

    		},
    		expectedOldProfile: "runtime/default",
    	}, {
    		name:       "unconfined",
    		podProfile: &v1.AppArmorProfile{Type: v1.AppArmorProfileTypeUnconfined},
    		expectedProfile: &runtimeapi.SecurityProfile{
    			ProfileType: runtimeapi.SecurityProfile_Unconfined,
    		},
    		expectedOldProfile: "unconfined",
    	}, {
    		name: "localhost",
    		podProfile: &v1.AppArmorProfile{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_sandbox_test.go

    			pod:             newSeccompPod(nil, nil, "unconfined", ""),
    			expectedProfile: v1.SeccompProfileTypeRuntimeDefault,
    		},
    		{
    			description:     "seccomp annotation defined at container level should not be honoured",
    			pod:             newSeccompPod(nil, nil, "", "unconfined"),
    			expectedProfile: v1.SeccompProfileTypeRuntimeDefault,
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. pkg/api/pod/warnings_test.go

    	}{
    		{
    			name: "annotations",
    			template: &api.PodTemplateSpec{
    				ObjectMeta: metav1.ObjectMeta{Annotations: map[string]string{
    					`container.apparmor.security.beta.kubernetes.io/foo`: `unconfined`,
    				}},
    				Spec: api.PodSpec{Containers: []api.Container{{Name: "foo"}}},
    			},
    			expected: []string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 42.1K bytes
    - Viewed (0)
Back to top