Category: Azure
-
Automate business processes with Logic Apps
Create API Management, Logic App and Storage account Implement a workflow using Logic Apps
-
Automate business processes with Logic Apps Part 1 – Create API Management, Logic App and Storage account
Time for another lab, this time lab 09 which is here. First create a resource group and the API management. In the portal create the logic app. And finally create the storage account. Perfect! In the next post we will upload files to a storage blob and configure a workflow in Logic Apps!
-
Deploying compute workloads by using images and containers Part 4 – Deploy an Azure container instance
First update the container registry for admin enabled. Now deploy your container. You will find username and password for the registry in the access keys settings. Now since it’s automatically started all you need to do is check the logs and you will see the container has collected the ip adress of the container. Wow! […]
-
Deploying compute workloads by using images and containers Part 3 – Create an Azure Container Registry and upload a container image
In this part we will create an Azure Container Registry. You can now check the respository of the container registry and verify that your docker image is available. Now in the final post we will deploy a container from our image.
-
Deploying compute workloads by using images and containers Part 2 – Create a dotnet app and a docker file
Launch the cloudshell from the Azure Portal and create a folder and a dotnet console application. Create a new console project Create a new file called Dockerfile and launch code inside the cloudshell. Copy the sourcecode from the learn excercise and run the application to verify that the ipaddress is found. And finally copy the […]
-
Deploying compute workloads in Azure by using images and containers
Create a VM using Azure CLI Create a dotnet app and a docker file Create an Azure Container Registry and upload a container image Deploy an Azure container instance
-
Deploying compute workloads in Azure by using images and containers Part 1 – Create a VM using Azure CLI
In Lab 05 here we will deploy Docker containers into Azure Container Registry. Connect to Azure and create a resource group and the VM. Now check the ipadress and note it. Now let’s connect using SSH. There you go! You just connected to your very own debian vm in Azure! In the next post we’ll […]
-
Asynchronously processing messages by using Azure Queue Storage Part 4 – Download Azure Storage Explorer and add messages to the queue.
Head over to Azure Storage Explorer here and download and install. Open and connect to your storage account and queue and add a message. Make sure you don’t encode in base64. Run your dotnet application and watch it collect your message in your very own Azure Storage Queue! You’ve just created a storage account, message […]
-
Asynchronously processing messages by using Azure Queue Storage Part 3 – Write code to add messages to the queue
Let’s write some code to add messages to the queue. The final main will look like this. After you’re done, save Let’s build using donet build to check for any errors. Once built and ok we can move on. In the next post we’ll download storage explorer and add some messages.
-
Asynchronously processing messages by using Azure Queue Storage Part 2 – Install Git, pull a repository and connect to a storage queue using C#
Head over to GIT, download and install. Open VSCode, press ctrl+shift p and type to clone a git and the link to the git. Next, create the project, install and build it. Please visit the github site here to see all the commands. Now open the Project.cs file and update the code with the code […]