Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for CinderPersistentVolumeSource (0.58 sec)

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

    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1.CinderPersistentVolumeSource)(nil), (*core.CinderPersistentVolumeSource)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_CinderPersistentVolumeSource_To_core_CinderPersistentVolumeSource(a.(*v1.CinderPersistentVolumeSource), b.(*core.CinderPersistentVolumeSource), 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

    	// +optional
    	SecretRef *LocalObjectReference
    }
    
    // CinderPersistentVolumeSource represents a cinder volume resource in Openstack. A Cinder volume
    // must exist before mounting to a container. The volume must also be
    // in the same region as the kubelet. Cinder volumes support ownership
    // management and SELinux relabeling.
    type CinderPersistentVolumeSource struct {
    	// Unique id of the volume used to identify the cinder volume.
    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

    // A Cinder volume must exist before mounting to a container.
    // The volume must also be in the same region as the kubelet.
    // Cinder volumes support ownership management and SELinux relabeling.
    message CinderPersistentVolumeSource {
      // volumeID used to identify the volume in cinder.
      // More info: https://examples.k8s.io/mysql-cinder-pd/README.md
      optional string volumeID = 1;
    
      // fsType Filesystem type to mount.
    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

    // A Cinder volume must exist before mounting to a container.
    // The volume must also be in the same region as the kubelet.
    // Cinder volumes support ownership management and SELinux relabeling.
    message CinderPersistentVolumeSource {
      // volumeID used to identify the volume in cinder.
      // More info: https://examples.k8s.io/mysql-cinder-pd/README.md
      optional string volumeID = 1;
    
      // fsType Filesystem type to mount.
    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

    	// cinder represents a cinder volume attached and mounted on kubelets host machine.
    	// More info: https://examples.k8s.io/mysql-cinder-pd/README.md
    	// +optional
    	Cinder *CinderPersistentVolumeSource `json:"cinder,omitempty" protobuf:"bytes,8,opt,name=cinder"`
    	// cephFS represents a Ceph FS mount on the host that shares a pod's lifetime
    	// +optional
    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": [
              "monitors"
            ],
            "type": "object"
          },
          "io.k8s.api.core.v1.CinderPersistentVolumeSource": {
    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. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"secretRef": "secretRef is Optional: points to a secret object containing parameters used to connect to OpenStack.",
    }
    
    func (CinderPersistentVolumeSource) SwaggerDoc() map[string]string {
    	return map_CinderPersistentVolumeSource
    }
    
    var map_CinderVolumeSource = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation.go

    			allErrs = append(allErrs, field.Required(fldPath.Child("secretRef", "name"), ""))
    		}
    	}
    	return allErrs
    }
    
    func validateCinderPersistentVolumeSource(cd *core.CinderPersistentVolumeSource, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	if len(cd.VolumeID) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("volumeID"), ""))
    	}
    	if cd.SecretRef != nil {
    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