Host statping outside home
This commit is contained in:
parent
7c6abc33fe
commit
bfce9e1cbf
5 changed files with 6 additions and 23 deletions
|
@ -34,3 +34,4 @@
|
||||||
- hosts: grimes
|
- hosts: grimes
|
||||||
roles:
|
roles:
|
||||||
- website
|
- website
|
||||||
|
- statping
|
||||||
|
|
|
@ -28,9 +28,6 @@
|
||||||
- name: Install quassel
|
- name: Install quassel
|
||||||
include: quassel.yml
|
include: quassel.yml
|
||||||
|
|
||||||
- name: Install statping
|
|
||||||
include: statping.yml
|
|
||||||
|
|
||||||
- name: Install synapse
|
- name: Install synapse
|
||||||
include: synapse.yml
|
include: synapse.yml
|
||||||
|
|
||||||
|
|
|
@ -21,18 +21,3 @@ services:
|
||||||
environment:
|
environment:
|
||||||
- POSTGRES_PASSWORD=statping
|
- POSTGRES_PASSWORD=statping
|
||||||
- POSTGRES_USER=statping
|
- POSTGRES_USER=statping
|
||||||
|
|
||||||
db-backups:
|
|
||||||
image: prodrigestivill/postgres-backup-local:12-alpine
|
|
||||||
restart: unless-stopped
|
|
||||||
volumes:
|
|
||||||
- /scratch/db-backups:/backups
|
|
||||||
depends_on:
|
|
||||||
- db
|
|
||||||
environment:
|
|
||||||
- POSTGRES_HOST=db
|
|
||||||
- POSTGRES_PASSWORD=statping
|
|
||||||
- POSTGRES_USER=statping
|
|
||||||
- POSTGRES_DB=statping
|
|
||||||
- BACKUP_KEEP_MONTHS=1
|
|
||||||
- BACKUP_KEEP_WEEKS=1
|
|
|
@ -1,4 +1,4 @@
|
||||||
- name: Create statping directory
|
- name: Create install directory
|
||||||
file:
|
file:
|
||||||
path: /opt/statping
|
path: /opt/statping
|
||||||
state: directory
|
state: directory
|
||||||
|
@ -6,9 +6,9 @@
|
||||||
mode: "{{ docker_compose_directory_mask }}"
|
mode: "{{ docker_compose_directory_mask }}"
|
||||||
become: true
|
become: true
|
||||||
|
|
||||||
- name: Install statping compose file
|
- name: Install compose file
|
||||||
template:
|
template:
|
||||||
src: files/statping/docker-compose.yml
|
src: files/docker-compose.yml
|
||||||
dest: /opt/statping/docker-compose.yml
|
dest: /opt/statping/docker-compose.yml
|
||||||
mode: "{{ docker_compose_file_mask }}"
|
mode: "{{ docker_compose_file_mask }}"
|
||||||
owner: "{{ docker_user.name }}"
|
owner: "{{ docker_user.name }}"
|
||||||
|
@ -16,7 +16,7 @@
|
||||||
register: compose_file
|
register: compose_file
|
||||||
become: true
|
become: true
|
||||||
|
|
||||||
- name: Cycle statping container
|
- name: Cycle container
|
||||||
docker_compose:
|
docker_compose:
|
||||||
project_src: /opt/statping
|
project_src: /opt/statping
|
||||||
pull: true
|
pull: true
|
|
@ -21,7 +21,7 @@ resource "cloudflare_record" "theorangeonenet_go" {
|
||||||
resource "cloudflare_record" "theorangeonenet_stats" {
|
resource "cloudflare_record" "theorangeonenet_stats" {
|
||||||
zone_id = cloudflare_zone.theorangeonenet.id
|
zone_id = cloudflare_zone.theorangeonenet.id
|
||||||
name = "stats"
|
name = "stats"
|
||||||
value = vultr_server.casey.main_ip
|
value = vultr_server.grimes.main_ip
|
||||||
type = "A"
|
type = "A"
|
||||||
ttl = 1
|
ttl = 1
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue