Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for runtimeHandler (0.18 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/node.k8s.io.v1alpha1.RuntimeClass.yaml

        kind: kindValue
        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      overhead:
        podFixed:
          podFixedKey: "0"
      runtimeHandler: runtimeHandlerValue
      scheduling:
        nodeSelector:
          nodeSelectorKey: nodeSelectorValue
        tolerations:
        - effect: effectValue
          key: keyValue
          operator: operatorValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/node.k8s.io.v1alpha1.RuntimeClass.json

            "time": "2004-01-01T01:01:01Z",
            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "runtimeHandler": "runtimeHandlerValue",
        "overhead": {
          "podFixed": {
            "podFixedKey": "0"
          }
        },
        "scheduling": {
          "nodeSelector": {
            "nodeSelectorKey": "nodeSelectorValue"
          },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/node.k8s.io.v1alpha1.RuntimeClass.yaml

        kind: kindValue
        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      overhead:
        podFixed:
          podFixedKey: "0"
      runtimeHandler: runtimeHandlerValue
      scheduling:
        nodeSelector:
          nodeSelectorKey: nodeSelectorValue
        tolerations:
        - effect: effectValue
          key: keyValue
          operator: operatorValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_image.go

    		// of not populating the runtimeHandler CRI field in ImageSpec struct is preserved.
    		// Therefore, when RuntimeClassInImageCriAPI feature gate is set, check to see if this
    		// field is empty and log a warning message.
    		if utilfeature.DefaultFeatureGate.Enabled(features.RuntimeClassInImageCriAPI) {
    			if img.Spec == nil || (img.Spec != nil && img.Spec.RuntimeHandler == "") {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/node/v1alpha1/types_swagger_doc_generated.go

    	"runtimeHandler": "runtimeHandler specifies the underlying runtime and configuration that the CRI implementation will use to handle pods of this class. The possible values are specific to the node & CRI configuration.  It is assumed that all handlers are available on...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.29.0/node.k8s.io.v1alpha1.RuntimeClass.json

            "time": "2004-01-01T01:01:01Z",
            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "runtimeHandler": "runtimeHandlerValue",
        "overhead": {
          "podFixed": {
            "podFixedKey": "0"
          }
        },
        "scheduling": {
          "nodeSelector": {
            "nodeSelectorKey": "nodeSelectorValue"
          },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.29.0/node.k8s.io.v1alpha1.RuntimeClass.yaml

        kind: kindValue
        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      overhead:
        podFixed:
          podFixedKey: "0"
      runtimeHandler: runtimeHandlerValue
      scheduling:
        nodeSelector:
          nodeSelectorKey: nodeSelectorValue
        tolerations:
        - effect: effectValue
          key: keyValue
          operator: operatorValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. pkg/kubelet/runtimeclass/runtimeclass_manager.go

    // purposes.
    func (m *Manager) WaitForCacheSync(stopCh <-chan struct{}) {
    	m.informerFactory.WaitForCacheSync(stopCh)
    }
    
    // LookupRuntimeHandler returns the RuntimeHandler string associated with the given RuntimeClass
    // name (or the default of "" for nil). If the RuntimeClass is not found, it returns an
    // errors.NotFound error.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 11 19:22:32 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  9. pkg/kubelet/container/testing/fake_runtime_helper.go

    	return "/poddir/" + string(podUID)
    }
    
    func (f *FakeRuntimeHelper) GetExtraSupplementalGroupsForPod(pod *v1.Pod) []int64 {
    	return nil
    }
    
    func (f *FakeRuntimeHelper) GetOrCreateUserNamespaceMappings(pod *v1.Pod, runtimeHandler string) (*runtimeapi.UserNamespace, error) {
    	return nil, nil
    }
    
    func (f *FakeRuntimeHelper) PrepareDynamicResources(pod *v1.Pod) error {
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 11:01:00 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_getters_test.go

    	testKubelet := newTestKubelet(t, false /* controllerAttachDetachEnabled */)
    	defer testKubelet.Cleanup()
    	kubelet := testKubelet.kubelet
    
    	kubelet.runtimeState.setRuntimeHandlers([]kubecontainer.RuntimeHandler{
    		{
    			Name:                   "has-support",
    			SupportsUserNamespaces: true,
    		},
    		{
    			Name:                   "has-no-support",
    			SupportsUserNamespaces: false,
    		},
    	})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 00:48:07 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top