Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for AppArmor (0.29 sec)

  1. pkg/apis/core/validation/validation.go

    		return nil
    	}
    	if !strings.HasPrefix(profile, v1.DeprecatedAppArmorBetaProfileNamePrefix) {
    		return fmt.Errorf("invalid AppArmor profile name: %q", profile)
    	}
    	return nil
    }
    
    // validateAppArmorAnnotationsAndFieldsMatchOnCreate validates that AppArmor fields and annotations are consistent.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    )
    
    // AppArmorProfile defines a pod or container's AppArmor settings.
    // +union
    type AppArmorProfile struct {
    	// type indicates which kind of AppArmor profile will be applied.
    	// Valid options are:
    	//   Localhost - a profile pre-loaded on the node.
    	//   RuntimeDefault - the container runtime's default profile.
    	//   Unconfined - no AppArmor enforcement.
    	// +unionDescriminator
    	Type AppArmorProfileType
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.30.md

    - AppArmor profiles can now be configured through fields on the `PodSecurityContext` and container `SecurityContext`. The beta AppArmor annotations are deprecated, and AppArmor status is no longer included in the node ready condition. ([#123435](https://github.com/kubernetes/kubernetes/pull/123435), [@tallclair](https://github.com/tallclair))...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    var map_AppArmorProfile = map[string]string{
    	"":                 "AppArmorProfile defines a pod or container's AppArmor settings.",
    	"type":             "type indicates which kind of AppArmor profile will be applied. Valid options are:\n  Localhost - a profile pre-loaded on the node.\n  RuntimeDefault - the container runtime's default profile.\n  Unconfined - no AppArmor enforcement.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    )
    
    // AppArmorProfile defines a pod or container's AppArmor settings.
    // +union
    type AppArmorProfile struct {
    	// type indicates which kind of AppArmor profile will be applied.
    	// Valid options are:
    	//   Localhost - a profile pre-loaded on the node.
    	//   RuntimeDefault - the container runtime's default profile.
    	//   Unconfined - no AppArmor enforcement.
    	// +unionDiscriminator
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

    }
    
    // AppArmorProfile defines a pod or container's AppArmor settings.
    // +union
    message AppArmorProfile {
      // type indicates which kind of AppArmor profile will be applied.
      // Valid options are:
      //   Localhost - a profile pre-loaded on the node.
      //   RuntimeDefault - the container runtime's default profile.
      //   Unconfined - no AppArmor enforcement.
      // +unionDiscriminator
      optional string type = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__batch__v1_openapi.json

              },
              "type": {
                "default": "",
                "description": "type indicates which kind of AppArmor profile will be applied. Valid options are:\n  Localhost - a profile pre-loaded on the node.\n  RuntimeDefault - the container runtime's default profile.\n  Unconfined - no AppArmor enforcement.",
                "type": "string"
              }
            },
            "required": [
              "type"
            ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
Back to top