public interface ISCSIVolumeSourceOrBuilder
extends com.google.protobuf.MessageOrBuilder
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getFsType()
Filesystem type of the volume that you want to mount.
|
com.google.protobuf.ByteString |
getFsTypeBytes()
Filesystem type of the volume that you want to mount.
|
java.lang.String |
getIqn()
Target iSCSI Qualified Name.
|
com.google.protobuf.ByteString |
getIqnBytes()
Target iSCSI Qualified Name.
|
java.lang.String |
getIscsiInterface()
Optional: Defaults to 'default' (tcp).
|
com.google.protobuf.ByteString |
getIscsiInterfaceBytes()
Optional: Defaults to 'default' (tcp).
|
int |
getLun()
iSCSI target lun number.
|
boolean |
getReadOnly()
ReadOnly here will force the ReadOnly setting in VolumeMounts.
|
java.lang.String |
getTargetPortal()
iSCSI target portal.
|
com.google.protobuf.ByteString |
getTargetPortalBytes()
iSCSI target portal.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneofjava.lang.String getTargetPortal()
iSCSI target portal. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).
string targetPortal = 1;com.google.protobuf.ByteString getTargetPortalBytes()
iSCSI target portal. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).
string targetPortal = 1;java.lang.String getIqn()
Target iSCSI Qualified Name.
string iqn = 2;com.google.protobuf.ByteString getIqnBytes()
Target iSCSI Qualified Name.
string iqn = 2;int getLun()
iSCSI target lun number.
int32 lun = 3;java.lang.String getIscsiInterface()
Optional: Defaults to 'default' (tcp). iSCSI interface name that uses an iSCSI transport.
string iscsiInterface = 4;com.google.protobuf.ByteString getIscsiInterfaceBytes()
Optional: Defaults to 'default' (tcp). iSCSI interface name that uses an iSCSI transport.
string iscsiInterface = 4;java.lang.String getFsType()
Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#iscsi TODO: how do we prevent errors in the filesystem from compromising the machine
string fsType = 5;com.google.protobuf.ByteString getFsTypeBytes()
Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: http://releases.k8s.io/release-1.4/docs/user-guide/volumes.md#iscsi TODO: how do we prevent errors in the filesystem from compromising the machine
string fsType = 5;boolean getReadOnly()
ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.
bool readOnly = 6;