Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for initiatorName (0.45 sec)

  1. pkg/apis/core/validation/validation.go

    		allErrs = append(allErrs, field.Required(fldPath.Child("secretRef"), ""))
    	}
    	if iscsi.InitiatorName != nil {
    		initiator := *iscsi.InitiatorName
    		if !strings.HasPrefix(initiator, "iqn") && !strings.HasPrefix(initiator, "eui") && !strings.HasPrefix(initiator, "naa") {
    			allErrs = append(allErrs, field.Invalid(fldPath.Child("initiatorname"), initiator, "must be valid format starting with iqn, eui, or naa"))
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types.go

    	// initiatorName is the custom iSCSI Initiator Name.
    	// If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface
    	// <target portal>:<volume name> will be created for the connection.
    	// +optional
    	InitiatorName *string `json:"initiatorName,omitempty" protobuf:"bytes,12,opt,name=initiatorName"`
    }
    
    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. pkg/apis/core/v1/zz_generated.conversion.go

    	out.DiscoveryCHAPAuth = in.DiscoveryCHAPAuth
    	out.SessionCHAPAuth = in.SessionCHAPAuth
    	out.SecretRef = (*core.SecretReference)(unsafe.Pointer(in.SecretRef))
    	out.InitiatorName = (*string)(unsafe.Pointer(in.InitiatorName))
    	return nil
    }
    
    // Convert_v1_ISCSIPersistentVolumeSource_To_core_ISCSIPersistentVolumeSource is an autogenerated conversion function.
    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. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      optional SecretReference secretRef = 10;
    
      // initiatorName is the custom iSCSI Initiator Name.
      // If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface
      // <target portal>:<volume name> will be created for the connection.
      // +optional
      optional string initiatorName = 12;
    }
    
    // Represents an ISCSI disk.
    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

    	"secretRef":         "secretRef is the CHAP Secret for iSCSI target and initiator authentication",
    	"initiatorName":     "initiatorName is the custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection.",
    }
    
    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. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      optional SecretReference secretRef = 10;
    
      // initiatorName is the custom iSCSI Initiator Name.
      // If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface
      // <target portal>:<volume name> will be created for the connection.
      // +optional
      optional string initiatorName = 12;
    }
    
    // Represents an ISCSI disk.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. pkg/apis/core/types.go

    	// +optional
    	SecretRef *LocalObjectReference
    	// Optional: Custom initiator name per volume.
    	// If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface
    	// <target portal>:<volume name> will be created for the connection.
    	// +optional
    	InitiatorName *string
    }
    
    // ISCSIPersistentVolumeSource represents an ISCSI disk.
    // ISCSI volumes can only be mounted as read/write once.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

                "type": "string"
              },
              "initiatorName": {
                "description": "initiatorName is the custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection.",
                "type": "string"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string"
              },
              "initiatorName": {
                "description": "initiatorName is the custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface <target portal>:<volume name> will be created for the connection.",
                "type": "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.8.md

    * kubectl show node role if defined ([#50438](https://github.com/kubernetes/kubernetes/pull/50438), [@dixudx](https://github.com/dixudx))
    * iSCSI volume plugin: iSCSI initiatorname support ([#48789](https://github.com/kubernetes/kubernetes/pull/48789), [@mtanino](https://github.com/mtanino))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
Back to top