This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# We simply kill the process when there is a failure. Another systemd service will | |
# automatically restart the process. | |
function docker_monitoring { | |
while [ 1 ]; do | |
if ! timeout 10 docker ps > /dev/null; then | |
echo "Docker daemon failed!" | |
pkill docker | |
# Wait for a while, as we don't want to kill it again before it is really up. | |
sleep 30 | |
else |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
kind: simplified-datafile | |
version: 0.2.0 | |
environment_name: Playground | |
azure: | |
subscription_name: YOUR-SUBSCRIPTION-NAME | |
resource_group: 'playground' | |
location: 'West Europe' | |
image_offer: RHEL #UbuntuServer | |
boot_storage: 'epiplaygrnd1' | |
image_sku: 7.5 #18.04-LTS |
NewerOlder