Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for runtimeclass (0.32 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/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

    "Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. This field will be autopopulated at admission time by the RuntimeClass admission controller. If the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests. The RuntimeClass admission controller will reject Pod create requests which have the overhead already set. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value defined...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    	pluginManager pluginmanager.PluginManager
    
    	// This flag sets a maximum number of images to report in the node status.
    	nodeStatusMaxImages int32
    
    	// Handles RuntimeClass objects for the Kubelet.
    	runtimeClassManager *runtimeclass.Manager
    
    	// Handles node shutdown events for the Node.
    	shutdownManager nodeshutdown.Manager
    
    	// Manage user namespaces
    	usernsManager *userns.UsernsManager
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers_test.go

    		}
    	}
    }
    
    func TestPrintRuntimeClass(t *testing.T) {
    	tests := []struct {
    		rc       nodeapi.RuntimeClass
    		expected []metav1.TableRow
    	}{
    		{
    			rc: nodeapi.RuntimeClass{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "rc1",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(1.9e9)},
    				},
    				Handler: "h1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  5. pkg/printers/internalversion/printers.go

    		r, err := printPriorityClass(&list.Items[i], options)
    		if err != nil {
    			return nil, err
    		}
    		rows = append(rows, r...)
    	}
    	return rows, nil
    }
    
    func printRuntimeClass(obj *nodeapi.RuntimeClass, options printers.GenerateOptions) ([]metav1.TableRow, error) {
    	row := metav1.TableRow{
    		Object: runtime.RawExtension{Object: obj},
    	}
    
    	name := obj.Name
    	handler := obj.Handler
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
Back to top