Added cassandra together with Wim

This commit is contained in:
Egon Rijpkema 2017-06-13 12:08:41 +02:00
parent 4c219eafc2
commit ac78a1a272
4 changed files with 53 additions and 6 deletions

7
cassandra.yml Normal file
View File

@ -0,0 +1,7 @@
---
# Run all plays as root.
- hosts: cassandra
become: True
roles:
- common
- cassandra

17
hosts
View File

@ -8,9 +8,14 @@ openstack01-node01
ansible-test
ansible-test-2
ansible-test-3
[cassandra]
openstack01-node[01:03]
[first_cassandra]
openstack01-node01
[next_cassandra]
openstack01-node02
openstack01-node03
[first_cassandra:vars]
run_options=""
[next_cassandra:vars]
run_options="-e CASSANDRA_SEEDS=172.23.41.1"

View File

@ -0,0 +1,16 @@
# Install a docker based cassandra cluster.
---
- include: ../common/tasks/docker.yml
- name: install service file.
template:
src: templates/cassandra.service
dest: /etc/systemd/system/cassandra.service
mode: 644
owner: root
group: root
- name: install service file
command: systemctl daemon-reload
- name: make sure service is started
systemd:
name: cassandra.service
state: started

View File

@ -0,0 +1,19 @@
[Unit]
Description=Cassandra Container
After=docker.service
Requires=docker.service
[Service]
TimeoutStartSec=0
Restart=always
ExecStartPre=-/usr/bin/docker stop %n
ExecStartPre=-/usr/bin/docker rm %n
ExecStartPre=/usr/bin/docker pull cassandra:3.10
ExecStart=/usr/bin/docker run --name %n -v /srv/lib/cassandra:/var/lib/cassandra \
-p 7000:7000 -p 7001:7001 -p 7199:7199 -p 9042:9042 -p 9160:9160 \
-e CASSANDRA_BROADCAST_ADDRESS={{ansible_default_ipv4.address}} \
-e CASSANDRA_START_RPC=True \
{{run_options}} cassandra:3.10
[Install]
WantedBy=multi-user.target