diff options
Diffstat (limited to 'resources')
-rwxr-xr-x | resources/health.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/resources/health.sh b/resources/health.sh new file mode 100755 index 0000000..5fe8236 --- /dev/null +++ b/resources/health.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +# Health check script for service change handler + +# Currently, the simple existence of the running container is assumed to indicate +# health. A better possible health check is if the distribution client provided a +# health check call. + +exit 0 |