Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for GetNodeAllocatable (0.58 sec)

  1. pkg/controller/volume/attachdetach/attach_detach_controller.go

    func (adc *attachDetachController) GetHostIP() (net.IP, error) {
    	return nil, fmt.Errorf("GetHostIP() not supported by Attach/Detach controller's VolumeHost implementation")
    }
    
    func (adc *attachDetachController) GetNodeAllocatable() (v1.ResourceList, error) {
    	return v1.ResourceList{}, nil
    }
    
    func (adc *attachDetachController) GetAttachedVolumesFromNodeStatus() (map[v1.UniqueVolumeName]string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  2. pkg/volume/plugins.go

    	// Returns the hostname of the host kubelet is running on
    	GetHostName() string
    
    	// Returns host IP or nil in the case of error.
    	GetHostIP() (net.IP, error)
    
    	// Returns node allocatable.
    	GetNodeAllocatable() (v1.ResourceList, error)
    
    	// Returns a function that returns a secret.
    	GetSecretFunc() func(namespace, name string) (*v1.Secret, error)
    
    	// Returns a function that returns a configmap.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
Back to top