hacking at glusterfs
cubox-i role for specific configs
This commit is contained in:
33
roles/cubox-i.xai-corp.net/defaults/main.yml
Normal file
33
roles/cubox-i.xai-corp.net/defaults/main.yml
Normal file
@@ -0,0 +1,33 @@
|
||||
---
|
||||
# defaults/main.yml
|
||||
# define default variable values here
|
||||
#/dev/sda6 /data/glusterfs/vmshares/brick1 xfs defaults 0 0
|
||||
|
||||
cubox-i:
|
||||
fstab:
|
||||
add:
|
||||
vmshare:
|
||||
host: /dev/sda6
|
||||
mount: /data/glusterfs/vmshares/brick1
|
||||
fstype: xfs
|
||||
attr: defaults
|
||||
gitea:
|
||||
host: /dev/sda7
|
||||
mount: /data/glusterfs/gitea/brick1
|
||||
fstype: xfs
|
||||
attr: defaults
|
||||
vmshare:
|
||||
host: /dev/sda8
|
||||
mount: /data/glusterfs/jenkins/brick1
|
||||
fstype: xfs
|
||||
attr: defaults
|
||||
gitea:
|
||||
host: /dev/sda9
|
||||
mount: /data/glusterfs/tmp/brick1
|
||||
fstype: xfs
|
||||
attr: defaults
|
||||
gitea:
|
||||
host: /dev/sda10
|
||||
mount: /data/glusterfs/elasticsearch/brick1
|
||||
fstype: xfs
|
||||
attr: defaults
|
||||
22
roles/cubox-i.xai-corp.net/tasks/main.yml
Normal file
22
roles/cubox-i.xai-corp.net/tasks/main.yml
Normal file
@@ -0,0 +1,22 @@
|
||||
---
|
||||
# main tasks for special cubox-i config
|
||||
|
||||
|
||||
- name: create mount points
|
||||
file:
|
||||
path: "{{ item.value.mount }}"
|
||||
state: directory
|
||||
mode: 0755
|
||||
with_dict: cubox-i.fstab.add
|
||||
|
||||
- name: create glusterfs mount hosts file entries
|
||||
lineinfile:
|
||||
state: present
|
||||
dest: /etc/fstab
|
||||
insertafter: EOF
|
||||
regexp: '^#?{{ item.value.host }}'
|
||||
line: '{{ item.value.host }} {{ item.value.mount }} {{ item.value.fstype }} {{ item.value.attr }} 0 0'
|
||||
with_dict: cubox-i.fstab.add
|
||||
|
||||
|
||||
- name: mute syslog
|
||||
@@ -15,3 +15,12 @@
|
||||
regexp: '^#?{{ item.value.host }}'
|
||||
line: '{{ item.value.host }} {{ item.value.mount }} glusterfs direct-io-mode=disable,defaults,_netdev 0 0'
|
||||
with_dict: gluster
|
||||
|
||||
- name: remove glusterfs mount hosts file entries
|
||||
lineinfile:
|
||||
state: absent
|
||||
dest: /etc/fstab
|
||||
insertafter: EOF
|
||||
regexp: '^#?{{ item.value.host }}'
|
||||
line: '{{ item.value.host }} {{ item.value.mount }} glusterfs direct-io-mode=disable,defaults,_netdev 0 0'
|
||||
with_dict: gluster_remove
|
||||
|
||||
@@ -23,13 +23,26 @@
|
||||
with_items: "{{mountpoints}}"
|
||||
|
||||
# manage volumes
|
||||
#- name: remove old gluster volumes
|
||||
# gluster_volume:
|
||||
# state: absent
|
||||
# name: "{{ item.key }}"
|
||||
# rebalance: no
|
||||
# replicas: false
|
||||
# cluster: "{{cluster}}"
|
||||
# with_dict: "{{removed_volumes}}"
|
||||
# run_once: true
|
||||
|
||||
|
||||
- name: create gluster volumes
|
||||
gluster_volume:
|
||||
state: present
|
||||
start_on_create: yes
|
||||
name: "{{ item.key }}"
|
||||
brick: '{{ item.value | join(",")}}'
|
||||
rebalance: no
|
||||
replicas: 2
|
||||
force: true
|
||||
cluster: "{{cluster}}"
|
||||
with_dict: "{{volumes}}"
|
||||
run_once: true
|
||||
@@ -51,6 +64,8 @@
|
||||
brick: '{{ item.value | join(",")}}'
|
||||
rebalance: no
|
||||
replicas: false
|
||||
force: true
|
||||
cluster: "{{cluster}}"
|
||||
with_dict: "{{distributed_volumes}}"
|
||||
run_once: true
|
||||
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
- figlet
|
||||
- update-motd
|
||||
- lm-sensors
|
||||
when: ansible_architecture == 'armv7l'
|
||||
when: ansible_architecture !== 'armv7l'
|
||||
|
||||
|
||||
- name: remove help text
|
||||
@@ -24,7 +24,7 @@
|
||||
with_items:
|
||||
- /etc/update-motd.d/10-help-text
|
||||
- /etc/update-motd.d/51-cloudguest
|
||||
when: ansible_architecture == 'armv7l'
|
||||
when: ansible_architecture !== 'armv7l'
|
||||
|
||||
|
||||
- name: add new info
|
||||
@@ -35,4 +35,4 @@
|
||||
with_items:
|
||||
- { src: hostname.sh, dest: 10-hostname }
|
||||
- { src: systats.sh, dest: 11-sysstats}
|
||||
when: ansible_architecture == 'armv7l'
|
||||
when: ansible_architecture !== 'armv7l'
|
||||
|
||||
@@ -38,7 +38,7 @@ ns02 IN CNAME cubox-i
|
||||
|
||||
; gluster servers
|
||||
gluster IN A 192.168.2.11
|
||||
gluster IN A 192.168.2.12
|
||||
;gluster IN A 192.168.2.12
|
||||
|
||||
; docker swarm nodes
|
||||
dkhost IN A 192.168.2.11
|
||||
|
||||
Reference in New Issue
Block a user