Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Tdname (0.18 sec)

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

    }
    
    func autoConvert_v1_GCEPersistentDiskVolumeSource_To_core_GCEPersistentDiskVolumeSource(in *v1.GCEPersistentDiskVolumeSource, out *core.GCEPersistentDiskVolumeSource, s conversion.Scope) error {
    	out.PDName = in.PDName
    	out.FSType = in.FSType
    	out.Partition = in.Partition
    	out.ReadOnly = in.ReadOnly
    	return nil
    }
    
    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. staging/src/k8s.io/api/core/v1/types.go

    // PDs support ownership management and SELinux relabeling.
    type GCEPersistentDiskVolumeSource struct {
    	// pdName is unique name of the PD resource in GCE. Used to identify the disk in GCE.
    	// More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk
    	PDName string `json:"pdName" protobuf:"bytes,1,opt,name=pdName"`
    	// fsType is filesystem type of the volume that you want to mount.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

                "description": "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/core/v1/generated.proto

      // will also be deleted. The name of the ResourceClaim will be <pod
      // name>-<resource name>, where <resource name> is the
      // PodResourceClaim.Name. Pod validation will reject the pod if the
      // concatenated name is not valid for a ResourceClaim (e.g. too long).
      //
      // An existing ResourceClaim with that name that is not owned by the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    EphemeralVolumeSource is embedded will be the owner of the PVC, i.e. the PVC will be deleted together with the pod.  The name of the PVC will be `<pod name>-<volume name>` where `<volume name>` is the name from the `PodSpec.Volumes` array entry. Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long).\n\nAn existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake. Starting the...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__batch__v1_openapi.json

    EphemeralVolumeSource is embedded will be the owner of the PVC, i.e. the PVC will be deleted together with the pod.  The name of the PVC will be `<pod name>-<volume name>` where `<volume name>` is the name from the `PodSpec.Volumes` array entry. Pod validation will reject the pod if the concatenated name is not valid for a PVC (for example, too long).\n\nAn existing PVC with that name that is not owned by the pod will *not* be used for the pod to avoid using an unrelated volume by mistake. Starting the...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/generated.proto

      // owner of the PVC, i.e. the PVC will be deleted together with the
      // pod.  The name of the PVC will be `<pod name>-<volume name>` where
      // `<volume name>` is the name from the `PodSpec.Volumes` array
      // entry. Pod validation will reject the pod if the concatenated name
      // is not valid for a PVC (for example, too long).
      //
      // An existing PVC with that name that is not owned by the pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation.go

    				}
    
    				name := *source.ClusterTrustBundle.Name
    				if signerName, ok := extractSignerNameFromClusterTrustBundleName(name); ok {
    					validationFunc := ValidateClusterTrustBundleName(signerName)
    					errMsgs := validationFunc(name, false)
    					for _, msg := range errMsgs {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  9. pkg/apis/core/types.go

    	ResourceClaimName *string
    }
    
    // OSName is the set of OS'es that can be used in OS.
    type OSName string
    
    // These are valid values for OSName
    const (
    	Linux   OSName = "linux"
    	Windows OSName = "windows"
    )
    
    // PodOS defines the OS parameters of a pod.
    type PodOS struct {
    	// Name is the name of the operating system. The currently supported values are linux and windows.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
Back to top