Compare commits

..

No commits in common. "205b780ace87c94b43fc82e10ad3834cf1ebf18b" and "750dc27d460b3266f040a83f62856762d45b2965" have entirely different histories.

4 changed files with 13 additions and 38 deletions

View File

@ -1,14 +1,14 @@
---
#- hosts: iron-man.lan
# roles:
# - ssh
# - ubuntu
#
#- hosts: prusa.lan
# roles:
# - ssh
# - octoprint
# - ubuntu
- hosts: iron-man.lan
roles:
- ssh
- ubuntu
- hosts: prusa.lan
roles:
- ssh
- octoprint
- ubuntu
- hosts: docker_cluster
roles:
@ -16,7 +16,7 @@
- docker-cluster
- ubuntu
#- hosts: router.lan
# roles:
# - router
- hosts: router.lan
roles:
- router

View File

@ -1,14 +0,0 @@
---
- name: Create hostfile
become: yes
template:
src: usr/local/sbin/check-docker.j2
dest: /usr/local/sbin/check-docker
mode: '0755'
- name: create cron
become: yes
cron:
name: "check docker"
minute: "*/15"
job: "/usr/local/sbin/check-docker"

View File

@ -11,4 +11,3 @@
- import_tasks: hostfile.yml
- import_tasks: docker-watcher.yml

View File

@ -1,10 +0,0 @@
#!/usr/bin/env bash
docker node inspect {{ ansible_hostname }} --format "{{ '{{' }} .Status.State {{ '}}' }}" | grep -q 'ready'
if [ $? == 1 ]; then
echo "Docker is down restarting"
service docker restart
else
echo "Docker is ok"
fi