Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for ISCSIPersistentVolumeSource (0.32 sec)

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

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

    	// Quobyte represents a Quobyte mount on the host that shares a pod's lifetime
    	// +optional
    	Quobyte *QuobyteVolumeSource
    	// ISCSIPersistentVolumeSource represents an ISCSI resource that is attached to a
    	// kubelet's host machine and then exposed to the pod.
    	// +optional
    	ISCSI *ISCSIPersistentVolumeSource
    	// FlexVolume represents a generic volume resource that is
    	// provisioned/attached using an exec based plugin.
    	// +optional
    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 type = 2;
    }
    
    // ISCSIPersistentVolumeSource represents an ISCSI disk.
    // ISCSI volumes can only be mounted as read/write once.
    // ISCSI volumes support ownership management and SELinux relabeling.
    message ISCSIPersistentVolumeSource {
      // targetPortal is iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port
    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
      optional string type = 2;
    }
    
    // ISCSIPersistentVolumeSource represents an ISCSI disk.
    // ISCSI volumes can only be mounted as read/write once.
    // ISCSI volumes support ownership management and SELinux relabeling.
    message ISCSIPersistentVolumeSource {
      // targetPortal is iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port
    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

    	InitiatorName *string `json:"initiatorName,omitempty" protobuf:"bytes,12,opt,name=initiatorName"`
    }
    
    // ISCSIPersistentVolumeSource represents an ISCSI disk.
    // ISCSI volumes can only be mounted as read/write once.
    // ISCSI volumes support ownership management and SELinux relabeling.
    type ISCSIPersistentVolumeSource struct {
    	// targetPortal is iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port
    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.ISCSIPersistentVolumeSource": {
            "description": "ISCSIPersistentVolumeSource represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.",
            "properties": {
    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

    }
    
    func (HostPathVolumeSource) SwaggerDoc() map[string]string {
    	return map_HostPathVolumeSource
    }
    
    var map_ISCSIPersistentVolumeSource = map[string]string{
    	"":                  "ISCSIPersistentVolumeSource represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.",
    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.Invalid(fldPath.Child("initiatorname"), initiator, "must be valid format"))
    		}
    	}
    	return allErrs
    }
    
    func validateISCSIPersistentVolumeSource(iscsi *core.ISCSIPersistentVolumeSource, pvName string, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	if len(iscsi.TargetPortal) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("targetPortal"), ""))
    	}
    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