Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for LocalhostProfile (0.73 sec)

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

    		if profile.LocalhostProfile == nil {
    			allErrs = append(allErrs, field.Required(fldPath.Child("localhostProfile"), "must be set when AppArmor type is Localhost"))
    		} else {
    			localhostProfile := strings.TrimSpace(*profile.LocalhostProfile)
    			if localhostProfile != *profile.LocalhostProfile {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (1)
  2. pkg/apis/core/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_AppArmorProfile_To_core_AppArmorProfile(in *v1.AppArmorProfile, out *core.AppArmorProfile, s conversion.Scope) error {
    	out.Type = core.AppArmorProfileType(in.Type)
    	out.LocalhostProfile = (*string)(unsafe.Pointer(in.LocalhostProfile))
    	return nil
    }
    
    // Convert_v1_AppArmorProfile_To_core_AppArmorProfile is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types.go

    	// 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".
    	// +optional
    	LocalhostProfile *string `json:"localhostProfile,omitempty" protobuf:"bytes,2,opt,name=localhostProfile"`
    }
    
    // +enum
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__batch__v1_openapi.json

          },
          "io.k8s.api.core.v1.AppArmorProfile": {
            "description": "AppArmorProfile defines a pod or container's AppArmor settings.",
            "properties": {
              "localhostProfile": {
                "description": "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 Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  5. pkg/apis/core/types.go

    	// +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.
    	// +optional
    	LocalhostProfile *string
    }
    
    // SeccompProfileType defines the supported seccomp profile types.
    type SeccompProfileType string
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  6. 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)
  7. staging/src/k8s.io/api/core/v1/generated.proto

      // +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.
      // Must match the loaded name of the profile.
      // Must be set if and only if type is "Localhost".
      // +optional
      optional string localhostProfile = 2;
    }
    
    // AttachedVolume describes a volume attached to a node
    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. common-protos/k8s.io/api/core/v1/generated.proto

      optional string type = 1;
    
      // localhostProfile indicates a profile defined in a file on the node should be used.
      // The profile must be preconfigured on the node to work.
      // Must be a descending path, relative to the kubelet's configured seccomp profile location.
      // Must only be set if type is "Localhost".
      // +optional
      optional string localhostProfile = 2;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.28.md

    - Added error handling for seccomp localhost configurations that do not properly set a `localhostProfile`. ([#117020](https://github.com/kubernetes/kubernetes/pull/117020), [@cji](https://github.com/cji))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
  10. CHANGELOG/CHANGELOG-1.25.md

    ## Changelog since v1.25.9
    
    ## Changes by Kind
    
    ### API Change
    
    - Added error handling for seccomp localhost configurations that do not properly set a localhostProfile ([#117020](https://github.com/kubernetes/kubernetes/pull/117020), [@cji](https://github.com/cji)) [SIG API Machinery and Node]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
Back to top