Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for RuntimeClasses (0.48 sec)

  1. common-protos/k8s.io/api/policy/v1beta1/generated.proto

      // This requires the ProcMountType feature flag to be enabled.
      // +optional
      repeated string allowedProcMountTypes = 21;
    
      // runtimeClass is the strategy that will dictate the allowable RuntimeClasses for a pod.
      // If this field is omitted, the pod's runtimeClassName field is unrestricted.
      // Enforcement of this field depends on the RuntimeClass feature gate being enabled.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_sandbox_test.go

    		assert.EqualValues(t, test.expectedProfile, actualProfile, "TestCase[%d]: %s", i, test.description)
    	}
    }
    
    // TestCreatePodSandbox_RuntimeClass tests creating sandbox with RuntimeClasses enabled.
    func TestCreatePodSandbox_RuntimeClass(t *testing.T) {
    	ctx := context.Background()
    	rcm := runtimeclass.NewManager(rctest.NewPopulatedClient())
    	defer rctest.StartManagerSync(rcm)()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. api/discovery/aggregated_v2.json

            "name": "node.k8s.io"
          },
          "versions": [
            {
              "freshness": "Current",
              "resources": [
                {
                  "resource": "runtimeclasses",
                  "responseKind": {
                    "group": "",
                    "kind": "RuntimeClass",
                    "version": ""
                  },
                  "scope": "Cluster",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:29:14 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/cluster-roles.yaml

        resources:
        - csinodes
        verbs:
        - create
        - delete
        - get
        - patch
        - update
      - apiGroups:
        - node.k8s.io
        resources:
        - runtimeclasses
        verbs:
        - get
        - list
        - watch
    - apiVersion: rbac.authorization.k8s.io/v1
      kind: ClusterRole
      metadata:
        annotations:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 08:11:08 UTC 2023
    - 24.1K bytes
    - Viewed (0)
  5. api/discovery/aggregated_v2beta1.json

            "name": "node.k8s.io"
          },
          "versions": [
            {
              "freshness": "Current",
              "resources": [
                {
                  "resource": "runtimeclasses",
                  "responseKind": {
                    "group": "",
                    "kind": "RuntimeClass",
                    "version": ""
                  },
                  "scope": "Cluster",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. pkg/controlplane/instance_test.go

    		discoveryv1beta1.SchemeGroupVersion.WithResource("endpointslices"):                true,
    		eventsv1beta1.SchemeGroupVersion.WithResource("events"):                           true,
    		nodev1beta1.SchemeGroupVersion.WithResource("runtimeclasses"):                     true,
    		policyapiv1beta1.SchemeGroupVersion.WithResource("poddisruptionbudgets"):          true,
    		policyapiv1beta1.SchemeGroupVersion.WithResource("podsecuritypolicies"):           true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

            "description": "RuntimeClass defines a class of container runtime supported in the cluster. The RuntimeClass is used to determine which container runtime is used to run all containers in a pod. RuntimeClasses are manually defined by a user or cluster provisioner, and referenced in the PodSpec. The Kubelet is responsible for resolving the RuntimeClassName reference before running the pod.  For more details, see https://kubernetes.io/docs/concepts/c...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 122.9K bytes
    - Viewed (0)
  8. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy.go

    	nodePolicyRules = append(nodePolicyRules, csiNodeInfoRule)
    
    	// RuntimeClass
    	nodePolicyRules = append(nodePolicyRules, rbacv1helpers.NewRule("get", "list", "watch").Groups("node.k8s.io").Resources("runtimeclasses").RuleOrDie())
    
    	// DRA Resource Claims
    	if utilfeature.DefaultFeatureGate.Enabled(features.DynamicResourceAllocation) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet.go

    	// Set up iptables util rules
    	if kl.makeIPTablesUtilChains {
    		kl.initNetworkUtil()
    	}
    
    	// Start component sync loops.
    	kl.statusManager.Start()
    
    	// Start syncing RuntimeClasses if enabled.
    	if kl.runtimeClassManager != nil {
    		kl.runtimeClassManager.Start(wait.NeverStop)
    	}
    
    	// Start the pod lifecycle event generator.
    	kl.pleg.Start()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

          "description": "RuntimeClass defines a class of container runtime supported in the cluster. The RuntimeClass is used to determine which container runtime is used to run all containers in a pod. RuntimeClasses are manually defined by a user or cluster provisioner, and referenced in the PodSpec. The Kubelet is responsible for resolving the RuntimeClassName reference before running the pod.  For more details, see https://kubernetes.io/docs/concepts/c...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
Back to top