Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 67 for runtimeclass (0.21 sec)

  1. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

              }
            },
            "type": "object"
          },
          "io.k8s.api.node.v1.RuntimeClass": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 122.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/node/v1alpha1/generated.pb.go

    }
    
    var xxx_messageInfo_Overhead proto.InternalMessageInfo
    
    func (m *RuntimeClass) Reset()      { *m = RuntimeClass{} }
    func (*RuntimeClass) ProtoMessage() {}
    func (*RuntimeClass) Descriptor() ([]byte, []int) {
    	return fileDescriptor_a8fee97bf5273e47, []int{1}
    }
    func (m *RuntimeClass) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *RuntimeClass) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_sandbox_test.go

    		rcn             *string
    		expectedHandler string
    		expectError     bool
    	}{
    		"unspecified RuntimeClass": {rcn: nil, expectedHandler: ""},
    		"valid RuntimeClass":       {rcn: pointer.String(rctest.SandboxRuntimeClass), expectedHandler: rctest.SandboxRuntimeHandler},
    		"missing RuntimeClass":     {rcn: pointer.String("phantom"), expectError: true},
    	}
    	for name, test := range tests {
    		t.Run(name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. 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)
  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/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)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/kubelet/userns/userns_manager.go

    	if handlerSupportsUserns, err := m.kl.HandlerSupportsUserNamespaces(runtimeHandler); err != nil {
    		return nil, err
    	} else if !handlerSupportsUserns {
    		return nil, fmt.Errorf("RuntimeClass handler %q does not support user namespaces", runtimeHandler)
    	}
    
    	m.lock.Lock()
    	defer m.lock.Unlock()
    
    	content, err := m.readMappingsFromFile(pod.UID)
    	if err != nil && err != utilstore.ErrKeyNotFound {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top