Compare commits
3 Commits
44b0431490
...
e3ee336440
Author | SHA1 | Date | |
---|---|---|---|
e3ee336440 | |||
989c1cd684 | |||
e833f06851 |
@ -11,6 +11,11 @@ Dockerfile
|
||||
*.csv
|
||||
*.toml
|
||||
*.git*
|
||||
.DS_Store
|
||||
.vscode/*
|
||||
thunder-tests/*
|
||||
.drone.yml
|
||||
|
||||
# Byte-compiled / optimized / DLL files
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
|
19
.drone.yml
Normal file
19
.drone.yml
Normal file
@ -0,0 +1,19 @@
|
||||
kind: pipeline
|
||||
name: default
|
||||
|
||||
steps:
|
||||
- name: docker
|
||||
image: plugins/docker
|
||||
settings:
|
||||
registry: git.jbranan.com
|
||||
dry_run: true
|
||||
username: jblu
|
||||
password:
|
||||
from_secret: gittea_drone
|
||||
repo: jblu/crane
|
||||
tags:
|
||||
- latest
|
||||
- main
|
||||
when:
|
||||
branch:
|
||||
- main
|
2
crane.py
2
crane.py
@ -55,6 +55,7 @@ class Crn:
|
||||
self.observed_containers = list(self.config["containers"].values())
|
||||
self.container_statuses = ["paused","dead","created","exited","removing","restarting","created"]
|
||||
#healthcheck
|
||||
self.use_healthcheck = self.config["healthcheck"]["use_healthcheck"]
|
||||
self.healthcheck_url = self.config["healthcheck"]["healthcheck_url"]
|
||||
|
||||
cont_log(self)
|
||||
@ -82,6 +83,7 @@ class Crn:
|
||||
cont_notify_summary(self, apprise_notify, requests)
|
||||
if self.use_apprise:
|
||||
cont_notify_summary(self, apprise_notify, requests)
|
||||
if self.use_healthcheck:
|
||||
send_ping(self, requests, self.healthcheck_url)
|
||||
|
||||
# Run
|
||||
|
Loading…
x
Reference in New Issue
Block a user