From 2bfb1698295e570ed6aa9acd21531dda10df13a4 Mon Sep 17 00:00:00 2001 From: Krzysiek Madejski Date: Mon, 4 Feb 2019 11:34:45 +0100 Subject: [PATCH] health-check + updates --- Deploy:-Azure.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/Deploy:-Azure.md b/Deploy:-Azure.md index f6d1f12..c7526b9 100644 --- a/Deploy:-Azure.md +++ b/Deploy:-Azure.md @@ -50,4 +50,17 @@ az container create \ --azure-file-volume-share-name $ACI_PERS_SHARE_NAME \ --azure-file-volume-mount-path /home/config ``` -[Check here](https://docs.microsoft.com/en-us/azure/container-instances/container-instances-volume-azure-files) how to find the file share keys. \ No newline at end of file +[Check here](https://docs.microsoft.com/en-us/azure/container-instances/container-instances-volume-azure-files) how to find the file share keys. + +## Step 4: Check if it works + +In Portal, in the menu on the left got to `Settings` -> `Containers` and click on the `Logs` tab. If everything goes well you should see following message: +``` +time="2019-02-04T10:30:19Z" level=info msg="Gateway(s) started succesfully. Now relaying messages" prefix=main +``` + +If something is wrong, a verbal error message should guide you to solve it. + +## Step 5: Update + +When you change the config file you just have to restart the container for the new settings to be pulled in. If the config file is hosted on Github and mounted as mentioned above, the restart will download the current commit. \ No newline at end of file