Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 542 for scsi (0.11 sec)

  1. staging/src/k8s.io/api/testdata/v1.29.0/storage.k8s.io.v1alpha1.VolumeAttachment.yaml

            endpoints: endpointsValue
            endpointsNamespace: endpointsNamespaceValue
            path: pathValue
            readOnly: true
          hostPath:
            path: pathValue
            type: typeValue
          iscsi:
            chapAuthDiscovery: true
            chapAuthSession: true
            fsType: fsTypeValue
            initiatorName: initiatorNameValue
            iqn: iqnValue
            iscsiInterface: iscsiInterfaceValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1.VolumeAttachment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.29.0/storage.k8s.io.v1.VolumeAttachment.yaml

            endpoints: endpointsValue
            endpointsNamespace: endpointsNamespaceValue
            path: pathValue
            readOnly: true
          hostPath:
            path: pathValue
            type: typeValue
          iscsi:
            chapAuthDiscovery: true
            chapAuthSession: true
            fsType: fsTypeValue
            initiatorName: initiatorNameValue
            iqn: iqnValue
            iscsiInterface: iscsiInterfaceValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.29.0/storage.k8s.io.v1beta1.VolumeAttachment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1beta1.VolumeAttachment.yaml

            endpoints: endpointsValue
            endpointsNamespace: endpointsNamespaceValue
            path: pathValue
            readOnly: true
          hostPath:
            path: pathValue
            type: typeValue
          iscsi:
            chapAuthDiscovery: true
            chapAuthSession: true
            fsType: fsTypeValue
            initiatorName: initiatorNameValue
            iqn: iqnValue
            iscsiInterface: iscsiInterfaceValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/HEAD/core.v1.PersistentVolume.yaml

      glusterfs:
        endpoints: endpointsValue
        endpointsNamespace: endpointsNamespaceValue
        path: pathValue
        readOnly: true
      hostPath:
        path: pathValue
        type: typeValue
      iscsi:
        chapAuthDiscovery: true
        chapAuthSession: true
        fsType: fsTypeValue
        initiatorName: initiatorNameValue
        iqn: iqnValue
        iscsiInterface: iscsiInterfaceValue
        lun: 3
        portals:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.29.0/storage.k8s.io.v1.VolumeAttachment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 9K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation.go

    			allErrs = append(allErrs, field.Invalid(fldPath.Child("iqn"), iscsi.IQN, "must be valid format"))
    		}
    	}
    	if iscsi.Lun < 0 || iscsi.Lun > 255 {
    		allErrs = append(allErrs, field.Invalid(fldPath.Child("lun"), iscsi.Lun, validation.InclusiveRangeError(0, 255)))
    	}
    	if (iscsi.DiscoveryCHAPAuth || iscsi.SessionCHAPAuth) && iscsi.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)
  9. staging/src/k8s.io/client-go/applyconfigurations/core/v1/persistentvolumespec.go

    	b.RBD = value
    	return b
    }
    
    // WithISCSI sets the ISCSI field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the ISCSI field is set to the value of the last call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  10. pkg/volume/iscsi/iscsi_test.go

    	if iqn != "iqn.2014-12.server:storage.target01" {
    		t.Errorf("wrong iqn: %v", iqn)
    	}
    	lun := spec.PersistentVolume.Spec.PersistentVolumeSource.ISCSI.Lun
    	if lun != 0 {
    		t.Errorf("wrong lun: %v", lun)
    	}
    	iface := spec.PersistentVolume.Spec.PersistentVolumeSource.ISCSI.ISCSIInterface
    	if iface != "default" {
    		t.Errorf("wrong ISCSIInterface: %v", iface)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 01 15:56:32 UTC 2022
    - 16.4K bytes
    - Viewed (0)
Back to top