Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 37 for attachedVolumes (0.37 sec)

  1. pkg/kubelet/volumemanager/reconciler/reconstruct_test.go

    			outerName := filepath.Base(tc.volumePath)
    			pod, pv, pvc := getPodPVCAndPV(tc.volumeMode, "pod1", outerName, "pvc1")
    			volumeSpec := &volume.Spec{PersistentVolume: pv}
    			kubeClient := createtestClientWithPVPVC(pv, pvc, v1.AttachedVolume{
    				Name:       v1.UniqueVolumeName(fmt.Sprintf("fake-plugin/%s", outerName)),
    				DevicePath: "fake/path",
    			})
    
    			rc, fakePlugin := getReconciler(tmpKubeletDir, t, mountPaths, kubeClient /*custom kubeclient*/)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. pkg/kubelet/volumemanager/volume_manager_test.go

    	node := &v1.Node{
    		ObjectMeta: metav1.ObjectMeta{Name: testHostname},
    		Status: v1.NodeStatus{
    			VolumesAttached: []v1.AttachedVolume{
    				{
    					Name:       "fake/fake-device",
    					DevicePath: "fake/path",
    				},
    			}},
    	}
    	pod := &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "abc",
    			Namespace: "nsA",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top