Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 45 for runtime_passes (0.3 sec)

  1. 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)
  2. plugin/pkg/admission/runtimeclass/admission_test.go

    		informerFactory := informers.NewSharedInformerFactory(nil, controller.NoResyncPeriodFunc())
    		runtimeClass.SetExternalKubeInformerFactory(informerFactory)
    		if listerObject != nil {
    			informerFactory.Node().V1().RuntimeClasses().Informer().GetStore().Add(listerObject)
    		}
    	}
    
    	if addClient {
    		var client kubernetes.Interface
    		if clientObject != nil {
    			client = fake.NewSimpleClientset(clientObject)
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 17 01:30:14 UTC 2022
    - 17.5K 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. CHANGELOG/CHANGELOG-1.14.md

    ### Action Required
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 14 22:06:39 UTC 2021
    - 271.5K bytes
    - Viewed (2)
  10. CHANGELOG/CHANGELOG-1.16.md

         ([#73977](https://github.com/kubernetes/kubernetes/pull/73977), [@khenidak](https://github.com/khenidak))
    - Add scheduling support for RuntimeClasses. RuntimeClasses can now specify nodeSelector constraints & tolerations, which are merged into the PodSpec for pods using that RuntimeClass. ([#80825](https://github.com/kubernetes/kubernetes/pull/80825), [@tallclair](https://github.com/tallclair))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 11 10:00:57 UTC 2021
    - 345.2K bytes
    - Viewed (0)
Back to top