Templates and scripts for easy setup on Azure.
Simplistic template for creating an all-in-one VM on Azure. All the pre-requisites are installed and set up on a Standard B2s + Ubuntu 18.04 LTS which is very cheap.
Note: This is a demonstration purpose configuration that - obviously - is not highly available and will not scale to hundreds of mocks and invocations. However, it will allow you to evaluate Microcks.
Simply click on Deploy to Azure then you will be redirected to your Azure account:
This template is just using 4 parameters:
adminUsernamewill be the username for SSH login to the created VM,sshKeyDatawill be the corresponding Public SSH key for administrator access to VM,vmNameshould be the globally unique name for this VM. It will be used for complete FQDN name creation,microcksVersionis the tagged version of Microcks you want to install. Default islatestwhich ... is the latest!
Once VM is created on Azure, just connect to it and start Microcks using these commands:
$ ssh -A <adminUsername>@<VM Public IP>
$ cd /opt/microcks/install/docker-compose
$ sudo docker-compose -f microcks.yml up -d
Wait for a few seconds everything has started and then test Microcks!