Settings:
export KUBERNETES_BRANCH="release-1.10"
export CLIENT_VERSION="0.1.0a1"
export PACKAGE_NAME="client"
24 lines
824 B
Go
24 lines
824 B
Go
/*
|
|
* Kubernetes
|
|
*
|
|
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
*
|
|
* API version: v1.10.0
|
|
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
|
|
*/
|
|
|
|
package client
|
|
|
|
// PortworxVolumeSource represents a Portworx volume resource.
|
|
type V1PortworxVolumeSource struct {
|
|
|
|
// FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\". Implicitly inferred to be \"ext4\" if unspecified.
|
|
FsType string `json:"fsType,omitempty"`
|
|
|
|
// Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.
|
|
ReadOnly bool `json:"readOnly,omitempty"`
|
|
|
|
// VolumeID uniquely identifies a Portworx volume
|
|
VolumeID string `json:"volumeID"`
|
|
}
|