Ansible role that installs and configures REX-Ray.
See http://rexray.readthedocs.org/en/stable/ for details on REX-Ray and specifically how the REX-Ray config file should be populated.
None
Available variables are listed below, along with their default values
(see vars/main.yml
):
rexray_channel: stable
The rexray channel refers to where to get the package from and can be one of
stable
, unstable
, or staged
.
rexray_service: false
This controls whether or not the rexray service/daemon should be started on the node.
rexray_storage_drivers: []
This is a list of all storage drivers to enable. The default is an empty list, but at least one storage driver must be enabled for REX-Ray to function. Setting this role variable is therefore mandatory.
Each storage driver has driver-specific variables that can be set. Some are required, some are optional. Details for each driver can be found in the User Guide Provider List.
AWS
rexray_aws_accesskey: ''
rexray_aws_secretkey: ''
rexray_aws_region: ''
GCE
rexray_gce_keyfile: ''
Isilon
rexray_isilon_endpoint: ''
rexray_isilon_insecure: false
rexray_isilon_username: ''
rexray_isilon_password: ''
rexray_isilon_volumePath: ''
rexray_isilon_nfsHost: ''
OpenStack
rexray_os_authurl: ''
rexray_os_userid: 0
rexray_os_username: ''
rexray_os_password: ''
rexray_os_tenantid: 0
rexray_os_tenantname: ''
rexray_os_domainid: 0
rexray_os_domainname: ''
rexray_os_regionname: ''
rexray_os_availabilityzonename: ''
ScaleIO
rexray_sio_endpoint: ''
rexray_sio_insecure: false
rexray_sio_usecerts: false
rexray_sio_username: ''
rexray_sio_password: ''
rexray_sio_systemid: 0
rexray_sio_systemname: ''
rexray_sio_protectiondomainid: 0
rexray_sio_protectiondomainname: ''
rexray_sio_storagepoolid: 0
rexray_sio_storagepoolname: ''
VirtualBox
rexray_vbox_endpoint: ''
rexray_vbox_user: ''
rexray_vbox_pass: ''
rexray_vbox_tls: false
rexray_vbox_volume_path: ''
rexray_vbox_controller_name: SATA
rexray_vbox_machine: ''
None
It is highly recommended to use Ansible Vault for storing sensitive variable values, such as passwords and API keys.
- hosts: gce_docker_hosts
roles:
- { role: codedellemc.rexray,
rexray_service: true,
rexray_storage_drivers: [gce],
rexray_gce_keyfile: "/opt/gce_keyfile" }
- hosts: gce_containers
roles:
- { role: codedellemc.rexray,
rexray_storage_drivers: [gce],
rexray_gce_keyfile: "/opt/gce_keyfile" }
- hosts: vbox_local_dev_containers
roles:
- { role: codedellemc.rexray,
rexray_channel: unstable,
rexray_storage_drivers: [virtualbox],
rexray_vbox_endpoint: "http://10.0.2.2:18083",
rexray_vbox_volume_path: "/Users/travis/VirtualBox VMs/Volumes" }
Apache 2.0
This role created by Travis Rhoden, of {code} by Dell EMC.