Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for attachedVolumes (0.54 sec)

  1. pkg/apis/core/v1/zz_generated.conversion.go

    	}
    	if err := s.AddGeneratedConversionFunc((*v1.AttachedVolume)(nil), (*core.AttachedVolume)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_AttachedVolume_To_core_AttachedVolume(a.(*v1.AttachedVolume), b.(*core.AttachedVolume), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*core.AttachedVolume)(nil), (*v1.AttachedVolume)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      optional PodAntiAffinity podAntiAffinity = 3;
    }
    
    // AttachedVolume describes a volume attached to a node
    message AttachedVolume {
      // Name of the attached volume
      optional string name = 1;
    
      // DevicePath represents the device path where the volume should be available
      optional string devicePath = 2;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    	RuntimeHandlers []NodeRuntimeHandler
    }
    
    // UniqueVolumeName defines the name of attached volume
    type UniqueVolumeName string
    
    // AttachedVolume describes a volume attached to a node
    type AttachedVolume struct {
    	// Name of the attached volume
    	Name UniqueVolumeName
    
    	// DevicePath represents the device path where the volume should be available
    	DevicePath string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.proto

      // Must match the loaded name of the profile.
      // Must be set if and only if type is "Localhost".
      // +optional
      optional string localhostProfile = 2;
    }
    
    // AttachedVolume describes a volume attached to a node
    message AttachedVolume {
      // Name of the attached volume
      optional string name = 1;
    
      // DevicePath represents the device path where the volume should be available
      optional string devicePath = 2;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	// +listType=atomic
    	RuntimeHandlers []NodeRuntimeHandler `json:"runtimeHandlers,omitempty" protobuf:"bytes,12,rep,name=runtimeHandlers"`
    }
    
    type UniqueVolumeName string
    
    // AttachedVolume describes a volume attached to a node
    type AttachedVolume struct {
    	// Name of the attached volume
    	Name UniqueVolumeName `json:"name" protobuf:"bytes,1,rep,name=name"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	return map_AppArmorProfile
    }
    
    var map_AttachedVolume = map[string]string{
    	"":           "AttachedVolume describes a volume attached to a node",
    	"name":       "Name of the attached volume",
    	"devicePath": "DevicePath represents the device path where the volume should be available",
    }
    
    func (AttachedVolume) SwaggerDoc() map[string]string {
    	return map_AttachedVolume
    }
    
    var map_AvoidPods = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
Back to top