├── README.md ├── playbooks ├── delete.yml ├── inventory.ini └── playbook.yml └── roles └── redis_cluster ├── tasks └── main.yml └── templates ├── redis.conf.j2 └── systemd.j2 /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartechOpenSource/ansible_redis-cluster/HEAD/README.md -------------------------------------------------------------------------------- /playbooks/delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartechOpenSource/ansible_redis-cluster/HEAD/playbooks/delete.yml -------------------------------------------------------------------------------- /playbooks/inventory.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartechOpenSource/ansible_redis-cluster/HEAD/playbooks/inventory.ini -------------------------------------------------------------------------------- /playbooks/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartechOpenSource/ansible_redis-cluster/HEAD/playbooks/playbook.yml -------------------------------------------------------------------------------- /roles/redis_cluster/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartechOpenSource/ansible_redis-cluster/HEAD/roles/redis_cluster/tasks/main.yml -------------------------------------------------------------------------------- /roles/redis_cluster/templates/redis.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartechOpenSource/ansible_redis-cluster/HEAD/roles/redis_cluster/templates/redis.conf.j2 -------------------------------------------------------------------------------- /roles/redis_cluster/templates/systemd.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartechOpenSource/ansible_redis-cluster/HEAD/roles/redis_cluster/templates/systemd.j2 --------------------------------------------------------------------------------