public interface RBDVolumeSourceOrBuilder
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 |
getImage()
The rados image name.
|
com.google.protobuf.ByteString |
getImageBytes()
The rados image name.
|
java.lang.String |
getKeyring()
Keyring is the path to key ring for RBDUser.
|
com.google.protobuf.ByteString |
getKeyringBytes()
Keyring is the path to key ring for RBDUser.
|
java.lang.String |
getMonitors(int index)
A collection of Ceph monitors.
|
com.google.protobuf.ByteString |
getMonitorsBytes(int index)
A collection of Ceph monitors.
|
int |
getMonitorsCount()
A collection of Ceph monitors.
|
java.util.List<java.lang.String> |
getMonitorsList()
A collection of Ceph monitors.
|
java.lang.String |
getPool()
The rados pool name.
|
com.google.protobuf.ByteString |
getPoolBytes()
The rados pool name.
|
boolean |
getReadOnly()
ReadOnly here will force the ReadOnly setting in VolumeMounts.
|
ObjectReference |
getSecretRef()
SecretRef is name of the authentication secret for RBDUser.
|
ObjectReferenceOrBuilder |
getSecretRefOrBuilder()
SecretRef is name of the authentication secret for RBDUser.
|
java.lang.String |
getUser()
The rados user name.
|
com.google.protobuf.ByteString |
getUserBytes()
The rados user name.
|
boolean |
hasSecretRef()
SecretRef is name of the authentication secret for RBDUser.
|
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneofjava.util.List<java.lang.String> getMonitorsList()
A collection of Ceph monitors. More info: http://releases.k8s.io/release-1.4/examples/volumes/rbd/README.md#how-to-use-it
repeated string monitors = 1;int getMonitorsCount()
A collection of Ceph monitors. More info: http://releases.k8s.io/release-1.4/examples/volumes/rbd/README.md#how-to-use-it
repeated string monitors = 1;java.lang.String getMonitors(int index)
A collection of Ceph monitors. More info: http://releases.k8s.io/release-1.4/examples/volumes/rbd/README.md#how-to-use-it
repeated string monitors = 1;com.google.protobuf.ByteString getMonitorsBytes(int index)
A collection of Ceph monitors. More info: http://releases.k8s.io/release-1.4/examples/volumes/rbd/README.md#how-to-use-it
repeated string monitors = 1;java.lang.String getImage()
The rados image name. More info: http://releases.k8s.io/release-1.4/examples/volumes/rbd/README.md#how-to-use-it
optional string image = 2;com.google.protobuf.ByteString getImageBytes()
The rados image name. More info: http://releases.k8s.io/release-1.4/examples/volumes/rbd/README.md#how-to-use-it
optional string image = 2;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#rbd TODO: how do we prevent errors in the filesystem from compromising the machine
optional string fsType = 3;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#rbd TODO: how do we prevent errors in the filesystem from compromising the machine
optional string fsType = 3;java.lang.String getPool()
The rados pool name. Default is rbd. More info: http://releases.k8s.io/release-1.4/examples/volumes/rbd/README.md#how-to-use-it.
optional string pool = 4;com.google.protobuf.ByteString getPoolBytes()
The rados pool name. Default is rbd. More info: http://releases.k8s.io/release-1.4/examples/volumes/rbd/README.md#how-to-use-it.
optional string pool = 4;java.lang.String getUser()
The rados user name. Default is admin. More info: http://releases.k8s.io/release-1.4/examples/volumes/rbd/README.md#how-to-use-it
optional string user = 5;com.google.protobuf.ByteString getUserBytes()
The rados user name. Default is admin. More info: http://releases.k8s.io/release-1.4/examples/volumes/rbd/README.md#how-to-use-it
optional string user = 5;java.lang.String getKeyring()
Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: http://releases.k8s.io/release-1.4/examples/volumes/rbd/README.md#how-to-use-it
optional string keyring = 6;com.google.protobuf.ByteString getKeyringBytes()
Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: http://releases.k8s.io/release-1.4/examples/volumes/rbd/README.md#how-to-use-it
optional string keyring = 6;boolean hasSecretRef()
SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: http://releases.k8s.io/release-1.4/examples/volumes/rbd/README.md#how-to-use-it
optional .appscode.kubernetes.v1beta2.ObjectReference secretRef = 7;ObjectReference getSecretRef()
SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: http://releases.k8s.io/release-1.4/examples/volumes/rbd/README.md#how-to-use-it
optional .appscode.kubernetes.v1beta2.ObjectReference secretRef = 7;ObjectReferenceOrBuilder getSecretRefOrBuilder()
SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: http://releases.k8s.io/release-1.4/examples/volumes/rbd/README.md#how-to-use-it
optional .appscode.kubernetes.v1beta2.ObjectReference secretRef = 7;boolean getReadOnly()
ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: http://releases.k8s.io/release-1.4/examples/volumes/rbd/README.md#how-to-use-it
optional bool readOnly = 8;