Installing RHGS 3.3 using gdeploy

Posted on

Hi,
I have to test RHGS so i got an evaluation subscription.

I created 8 vm in an openstack environment
- 1 admin
- 6 storage nodes
- 1 client

all the servers are registered and attached to the evaluation pool; repos are set too.

All the servers are accessible and ansible is working fine form admin server
I installed gdeploy and create a directory /etc/gdeploy
I create a first configuration file

#

rhgs-testing : glustest

#

#

-- Hosts --

#
[hosts]

rhgs-01

10.100.0.14

rhgs-02

10.100.0.16

rhgs-03

10.100.0.17

rhgs-04

10.100.0.20

rhgs-05

10.100.0.22

rhgs-06

10.100.0.24

#

-- Back-end setup --

#

Multiple back-up (SAS, SSD and SASEC)

#

backend-setup1 : SAS disks on each rhgs-node

#
[backend-setup1]
devices=vdb
dalign=256K
vgs=glustest_sas_vg
pools=glustest_sas_pool
lvs=glustest_sas_lv
mountpoints=/gluster/bricksas

#

backend-setup2 : SSD disks on each rhgs-node

#
[backend-setup2]
devices=vdc
dalign=256K
vgs=glustest_ssd_vg
pools=glustest_ssd_pool
lvs=glustest_ssd_lv
mountpoints=/gluster/brickssd

#

backend-setup3 : SAS for EC disks on each rhgs-node

#
[backend-setup3]
devices=vdd
dalign=256K
vgs=glustest_sasec_vg
pools=glustest_sasec_pool
lvs=glustest_sasec_lv
mountpoints=/gluster/bricksasec

-- Disktype, Disk count and stripe size --

[disktype]
jbod

[diskcount]

unused for jbod

[stripesize]

unused for jbod

-- Snapshots --

[snapshot-reserve]
20%
but when submitting it by gdeploy -c myconf.conf
gdeploy does nothing...

PLAY [gluster_servers] *************************************************************************************************************************************************************

TASK [Set SELinux labels on the bricks] ********************************************************************************************************************************************
skipping: [1]

TASK [Restore the SELinux context] *************************************************************************************************************************************************
skipping: [1]

PLAY RECAP *************************************************************************************************************************************************************************
1 : ok=0 changed=0 unreachable=0 failed=0

PLAY [gluster_servers] *************************************************************************************************************************************************************

TASK [Set SELinux labels on the bricks] ********************************************************************************************************************************************
skipping: [2]

TASK [Restore the SELinux context] *************************************************************************************************************************************************
skipping: [2]

PLAY RECAP *************************************************************************************************************************************************************************
2 : ok=0 changed=0 unreachable=0 failed=0

PLAY [gluster_servers] *************************************************************************************************************************************************************

TASK [Set SELinux labels on the bricks] ********************************************************************************************************************************************
skipping: [3]

TASK [Restore the SELinux context] *************************************************************************************************************************************************
skipping: [3]

PLAY RECAP *************************************************************************************************************************************************************************
3 : ok=0 changed=0 unreachable=0 failed=0

do I miss something ?

Responses