Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for NFSVolumeSource (0.42 sec)

  1. pkg/volume/nfs/nfs.go

    	// overrides
    	pod.Spec.ActiveDeadlineSeconds = &timeout
    	pod.GenerateName = "pv-recycler-nfs-"
    	pod.Spec.Volumes[0].VolumeSource = v1.VolumeSource{
    		NFS: &v1.NFSVolumeSource{
    			Server: spec.PersistentVolume.Spec.NFS.Server,
    			Path:   spec.PersistentVolume.Spec.NFS.Path,
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. pkg/volume/util/util_test.go

    	}{
    		"volume-with-mount-options": {
    			volume: createVolumeSpecWithMountOption("good-mount-opts", "ro,nfsvers=3", v1.PersistentVolumeSpec{
    				PersistentVolumeSource: v1.PersistentVolumeSource{
    					NFS: &v1.NFSVolumeSource{Server: "localhost", Path: "/srv", ReadOnly: false},
    				},
    			}),
    			expectedMountList: []string{"ro", "nfsvers=3"},
    			systemOptions:     nil,
    		},
    		"volume-with-bad-mount-options": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  3. pkg/apis/core/v1/zz_generated.conversion.go

    	}
    	if err := s.AddGeneratedConversionFunc((*v1.NFSVolumeSource)(nil), (*core.NFSVolumeSource)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_NFSVolumeSource_To_core_NFSVolumeSource(a.(*v1.NFSVolumeSource), b.(*core.NFSVolumeSource), scope)
    	}); err != nil {
    		return err
    	}
    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 *NFSVolumeSource) DeepCopyInto(out *NFSVolumeSource) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NFSVolumeSource.
    func (in *NFSVolumeSource) DeepCopy() *NFSVolumeSource {
    	if in == nil {
    		return nil
    	}
    	out := new(NFSVolumeSource)
    	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 *NFSVolumeSource) DeepCopyInto(out *NFSVolumeSource) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NFSVolumeSource.
    func (in *NFSVolumeSource) DeepCopy() *NFSVolumeSource {
    	if in == nil {
    		return nil
    	}
    	out := new(NFSVolumeSource)
    	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. pkg/apis/core/types.go

    	Items []KeyToPath
    	// Specify whether the Secret or its key must be defined
    	// +optional
    	Optional *bool
    }
    
    // NFSVolumeSource represents an NFS mount that lasts the lifetime of a pod.
    // NFS volumes do not support ownership management or SELinux relabeling.
    type NFSVolumeSource struct {
    	// Server is the hostname or IP address of the NFS server
    	Server string
    
    	// Path is the exported NFS share
    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. staging/src/k8s.io/api/core/v1/generated.pb.go

    func (m *NFSVolumeSource) Reset()      { *m = NFSVolumeSource{} }
    func (*NFSVolumeSource) ProtoMessage() {}
    func (*NFSVolumeSource) Descriptor() ([]byte, []int) {
    	return fileDescriptor_6c07b07c062484ab, []int{90}
    }
    func (m *NFSVolumeSource) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *NFSVolumeSource) 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)
  8. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      optional string fsType = 2;
    }
    
    // Represents an NFS mount that lasts the lifetime of a pod.
    // NFS volumes do not support ownership management or SELinux relabeling.
    message NFSVolumeSource {
      // server is the hostname or IP address of the NFS server.
      // More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs
      optional string server = 1;
    
      // path that is exported by the NFS server.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/generated.proto

      optional string status = 2;
    }
    
    // Represents an NFS mount that lasts the lifetime of a pod.
    // NFS volumes do not support ownership management or SELinux relabeling.
    message NFSVolumeSource {
      // server is the hostname or IP address of the NFS server.
      // More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs
      optional string server = 1;
    
      // path that is exported by the NFS server.
    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/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "type": "string"
            }
          },
          "required": [
            "path"
          ],
          "type": "object"
        },
        "io.k8s.api.core.v1.NFSVolumeSource": {
          "description": "Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.",
          "properties": {
            "path": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
Back to top