Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 36 for AttachedVolume (0.42 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. pkg/apis/core/zz_generated.deepcopy.go

    func (in *AttachedVolume) DeepCopyInto(out *AttachedVolume) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AttachedVolume.
    func (in *AttachedVolume) DeepCopy() *AttachedVolume {
    	if in == nil {
    		return nil
    	}
    	out := new(AttachedVolume)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    func (in *AttachedVolume) DeepCopyInto(out *AttachedVolume) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AttachedVolume.
    func (in *AttachedVolume) DeepCopy() *AttachedVolume {
    	if in == nil {
    		return nil
    	}
    	out := new(AttachedVolume)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.pb.go

    func (m *AttachedVolume) Reset()      { *m = AttachedVolume{} }
    func (*AttachedVolume) ProtoMessage() {}
    func (*AttachedVolume) Descriptor() ([]byte, []int) {
    	return fileDescriptor_6c07b07c062484ab, []int{3}
    }
    func (m *AttachedVolume) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *AttachedVolume) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. pkg/kubelet/kubelet_test.go

    							Type:    v1.NodeInternalIP,
    							Address: testKubeletHostIP,
    						},
    						{
    							Type:    v1.NodeInternalIP,
    							Address: testKubeletHostIPv6,
    						},
    					},
    					VolumesAttached: []v1.AttachedVolume{
    						{
    							Name:       "fake/fake-device",
    							DevicePath: "fake/path",
    						},
    					},
    				},
    			},
    		},
    	}
    	kubelet.recorder = fakeRecorder
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

            }
          },
          "type": "object"
        },
        "io.k8s.api.core.v1.AttachedVolume": {
          "description": "AttachedVolume describes a volume attached to a node",
          "properties": {
            "devicePath": {
              "description": "DevicePath represents the device path where the volume should be available",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top