Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for profilem (0.17 sec)

  1. pkg/apis/core/types.go

    	AppArmorProfile *AppArmorProfile
    }
    
    // SeccompProfile defines a pod/container's seccomp profile settings.
    // Only one profile source may be set.
    // +union
    type SeccompProfile struct {
    	// +unionDiscriminator
    	Type SeccompProfileType
    	// Load a profile defined in static file on the node.
    	// The profile must be preconfigured on the node to work.
    	// LocalhostProfile cannot be an absolute nor a descending path.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  2. prow/config/calico.yaml

                      - protocol
                      type: object
                    type: array
                  profiles:
                    description: A list of identifiers of security Profile objects that
                      apply to this endpoint. Each profile is applied in the order that
                      they appear in this list.  Profile rules are applied after the selector-based
                      security policy.
                    items:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.30.md

    - ValidatingAdmissionPolicy now exclude TokenReview, SelfSubjectReview, LocalSubjectAccessReview,...
    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. pkg/apis/core/validation/validation.go

    	return allErrs
    }
    
    func ValidateAppArmorProfileFormat(profile string) error {
    	if profile == "" || profile == v1.DeprecatedAppArmorBetaProfileRuntimeDefault || profile == v1.DeprecatedAppArmorBetaProfileNameUnconfined {
    		return nil
    	}
    	if !strings.HasPrefix(profile, v1.DeprecatedAppArmorBetaProfileNamePrefix) {
    		return fmt.Errorf("invalid AppArmor profile name: %q", profile)
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"localhostProfile": "localhostProfile indicates a profile loaded on the node that should be used. The profile must be preconfigured on the node to work. Must match the loaded name of the profile. Must be set if and only if type is \"Localhost\".",...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    }
    
    // SeccompProfile defines a pod/container's seccomp profile settings.
    // Only one profile source may be set.
    // +union
    type SeccompProfile struct {
    	// type indicates which kind of seccomp profile will be applied.
    	// Valid options are:
    	//
    	// Localhost - a profile defined in a file on the node should be used.
    	// RuntimeDefault - the container runtime default profile should be used.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/generated.proto

      // 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;
    
      // localhostProfile indicates a profile loaded on the node that should be used.
      // The profile must be preconfigured on the node to work.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__batch__v1_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	DefaultRevision string `protobuf:"bytes,40,opt,name=defaultRevision,proto3" json:"defaultRevision,omitempty"`
    	// Specifies which installation configuration profile to apply.
    	Profile string `protobuf:"bytes,42,opt,name=profile,proto3" json:"profile,omitempty"`
    	// Specifies the compatibility version to use. When this is set, the control plane will
    	// be configured with the same defaults as the specified version.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.27.md

    - Added "general", "baseline", and "restricted" debugging profiles for kubectl debug. ([#114280](https://github.com/kubernetes/kubernetes/pull/114280), [@sding3](https://github.com/sding3)) [SIG CLI]
    - Added "netadmin" debugging profiles for kubectl debug. ([#115712](https://github.com/kubernetes/kubernetes/pull/115712), [@wedaly](https://github.com/wedaly)) [SIG CLI]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
Back to top