Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for SeccompProfileRuntimeDefault (0.44 sec)

  1. pkg/apis/core/annotation_key_constants.go

    	SeccompContainerAnnotationKeyPrefix string = "container.seccomp.security.alpha.kubernetes.io/"
    
    	// SeccompProfileRuntimeDefault represents the default seccomp profile used by container runtime.
    	// Deprecated: set a pod or container security context `seccompProfile` of type "RuntimeDefault" instead.
    	SeccompProfileRuntimeDefault string = "runtime/default"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 18:46:31 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/annotation_key_constants.go

    	SeccompContainerAnnotationKeyPrefix string = "container.seccomp.security.alpha.kubernetes.io/"
    
    	// SeccompProfileRuntimeDefault represents the default seccomp profile used by container runtime.
    	// Deprecated: set a pod or container security context `seccompProfile` of type "RuntimeDefault" instead.
    	SeccompProfileRuntimeDefault string = "runtime/default"
    
    	// SeccompProfileNameUnconfined is the unconfined seccomp profile.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 18:46:31 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation.go

    		}
    	}
    
    	return allErrs
    }
    
    func ValidateSeccompProfile(p string, fldPath *field.Path) field.ErrorList {
    	if p == core.SeccompProfileRuntimeDefault || p == core.DeprecatedSeccompProfileDockerDefault {
    		return nil
    	}
    	if p == v1.SeccompProfileNameUnconfined {
    		return nil
    	}
    	if strings.HasPrefix(p, v1.SeccompLocalhostProfileNamePrefix) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  4. pkg/apis/core/validation/validation_test.go

    		"runtime default seccomp profile": {
    			ObjectMeta: metav1.ObjectMeta{
    				Name:      "123",
    				Namespace: "ns",
    				Annotations: map[string]string{
    					core.SeccompPodAnnotationKey: core.SeccompProfileRuntimeDefault,
    				},
    			},
    			Spec: validPodSpec(nil),
    		},
    		"docker default seccomp profile": {
    			ObjectMeta: metav1.ObjectMeta{
    				Name:      "123",
    				Namespace: "ns",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
Back to top