Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 119 for runtimeclass (0.34 sec)

  1. staging/src/k8s.io/api/node/v1alpha1/register.go

    	AddToScheme = SchemeBuilder.AddToScheme
    )
    
    // addKnownTypes adds the list of known types to api.Scheme.
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&RuntimeClass{},
    		&RuntimeClassList{},
    	)
    
    	metav1.AddToGroupVersion(scheme, SchemeGroupVersion)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 19:07:54 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/node/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *RuntimeClass) APILifecycleIntroduced() (major, minor int) {
    	return 1, 20
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. pkg/apis/node/register.go

    	AddToScheme = SchemeBuilder.AddToScheme
    )
    
    // Adds the list of known types to api.Scheme.
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&RuntimeClass{},
    		&RuntimeClassList{},
    	)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 19:07:54 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/node/v1beta1/register.go

    	AddToScheme = SchemeBuilder.AddToScheme
    )
    
    // addKnownTypes adds the list of known types to api.Scheme.
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&RuntimeClass{},
    		&RuntimeClassList{},
    	)
    
    	metav1.AddToGroupVersion(scheme, SchemeGroupVersion)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 19:57:12 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/policy/v1beta1/generated.proto

      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
      optional RuntimeClassStrategyOptions runtimeClass = 24;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  6. pkg/api/node/util.go

    // and a bool indicating if the label is deprecated.
    func GetNodeLabelDeprecatedMessage(key string) (string, bool) {
    	msg, ok := deprecatedNodeLabels[key]
    	return msg, ok
    }
    
    func GetWarningsForRuntimeClass(rc *node.RuntimeClass) []string {
    	var warnings []string
    
    	if rc != nil && rc.Scheduling != nil && rc.Scheduling.NodeSelector != nil {
    		// use of deprecated node labels in scheduling's node affinity
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 25 07:15:34 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  7. pkg/kubelet/metrics/metrics.go

    	// Broken down by RuntimeClass.Handler.
    	RunPodSandboxDuration = metrics.NewHistogramVec(
    		&metrics.HistogramOpts{
    			Subsystem: KubeletSubsystem,
    			Name:      RunPodSandboxDurationKey,
    			Help:      "Duration in seconds of the run_podsandbox operations. Broken down by RuntimeClass.Handler.",
    			// Use DefBuckets for now, will customize the buckets if necessary.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/util/util.go

    			return runtimeapi.NamespaceMode_POD
    		}
    	}
    	// Note that PID does not default to the zero value for v1.Pod
    	return runtimeapi.NamespaceMode_CONTAINER
    }
    
    // LookupRuntimeHandler is implemented by *runtimeclass.Manager.
    type RuntimeHandlerResolver interface {
    	LookupRuntimeHandler(runtimeClassName *string) (string, error)
    }
    
    // namespacesForPod returns the runtimeapi.NamespaceOption for a given pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:14:48 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. api/discovery/aggregated_v2.json

              "resources": [
                {
                  "resource": "runtimeclasses",
                  "responseKind": {
                    "group": "",
                    "kind": "RuntimeClass",
                    "version": ""
                  },
                  "scope": "Cluster",
                  "singularResource": "runtimeclass",
                  "verbs": [
                    "create",
                    "delete",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:29:14 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. api/discovery/aggregated_v2beta1.json

              "resources": [
                {
                  "resource": "runtimeclasses",
                  "responseKind": {
                    "group": "",
                    "kind": "RuntimeClass",
                    "version": ""
                  },
                  "scope": "Cluster",
                  "singularResource": "runtimeclass",
                  "verbs": [
                    "create",
                    "delete",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top