Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for NFSVolumeSource (0.31 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. staging/src/k8s.io/api/core/v1/types.go

    	// nfs represents an NFS mount on the host that shares a pod's lifetime
    	// More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs
    	// +optional
    	NFS *NFSVolumeSource `json:"nfs,omitempty" protobuf:"bytes,7,opt,name=nfs"`
    	// iscsi represents an ISCSI Disk resource that is attached to a
    	// kubelet's host machine and then exposed to the pod.
    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. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.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: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string"
              }
            },
            "type": "object",
            "x-kubernetes-map-type": "atomic"
          },
          "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: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"readOnly": "readOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs",
    }
    
    func (NFSVolumeSource) SwaggerDoc() map[string]string {
    	return map_NFSVolumeSource
    }
    
    var map_Namespace = map[string]string{
    	"":         "Namespace provides a scope for Names. Use of multiple namespaces is optional.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  9. pkg/apis/core/validation/validation.go

    	allErrs := field.ErrorList{}
    	if len(claim.ClaimName) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("claimName"), ""))
    	}
    	return allErrs
    }
    
    func validateNFSVolumeSource(nfs *core.NFSVolumeSource, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	if len(nfs.Server) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("server"), ""))
    	}
    	if len(nfs.Path) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top