Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for unconfined (0.18 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)
  5. pkg/util/tolerations/tolerations_test.go

    					require.True(t, isContained(tol, whitelist), debugMsg(input, whitelist))
    				}
    			} else {
    				uncontained := false
    				for _, tol := range input {
    					if !isContained(tol, whitelist) {
    						uncontained = true
    						break
    					}
    				}
    				require.True(t, uncontained, debugMsg(input, whitelist))
    			}
    		}
    	})
    
    	t.Run("MergeTolerations", func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 26 22:25:49 UTC 2019
    - 11.4K bytes
    - Viewed (0)
  6. LICENSE

        based on the Library, uncombined with any other library
        facilities.  This must be distributed under the terms of the
        Sections above.
    
        b) Give prominent notice with the combined library of the fact
        that part of it is a work based on the Library, and explaining
        where to find the accompanying uncombined form of the same work.
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Jan 18 20:25:38 UTC 2016
    - 25.8K bytes
    - Viewed (0)
Back to top