This is a workshop/lab setup that I created; it is going to take you through a DevOps journey using Azure DevOps. From setting up your pipeline to deploying an application to your Azure Kubernetes cluster! This is also my contribution…
Tag: Azure DevOps
Build and push Docker Images to Azure Container Registry using Azure DevOps Pipelines
In this blog post I am going to show how you can build and push Docker Images to Azure Container Registry (ACR) using an Azure DevOps Pipeline. Create Azure Container Registry Run the below AZ CLI to create a resource…
Read More Build and push Docker Images to Azure Container Registry using Azure DevOps Pipelines
Conditional Variables in Azure DevOps Pipelines
Creating Azure DevOps Pipelines, have you used a condition to determine which variables to use? If not, I will detail in this blog post how you can do this! What is a condition? Conditions or statements that are used to…
Storing and retrieving secrets in Azure KeyVault with Variable Groups in Azure DevOps Pipelines
Using Azure DevOps Pipelines and want to store secrets in Azure KeyVault? Use a variable group with Key Vault integration to retrieve these secrets and use within your DevOps pipeline Why Azure KeyVault? Using a variable group, you can store…
Create an Azure DevOps self-hosted linux agent virtual machine using Terraform
Using Azure DevOps & wanting to deploy an Azure DevOps self-hosted agent using Terraform? In this blog I will show you how by creating all the required Azure resources for IaaS self-hosted agent! Why use an Azure DevOps self-hosted agent?…
Read More Create an Azure DevOps self-hosted linux agent virtual machine using Terraform
Scout Suite reports using Azure DevOps Pipeline
In this blog post, I am going to show how to run ScoutSuite in an Azure DevOps Pipeline and display reports within an Azure Storage Account Static Website
Get Public IP address of Azure DevOps hosted agent and Github-hosted runner
Wanting to know the specific Public IP address of an Azure DevOps hosted agent or GitHub-hosted runner? In this blog post I am going to show examples of how to retrieve each using bash within Azure DevOps Pipelines and GitHub…
Read More Get Public IP address of Azure DevOps hosted agent and Github-hosted runner
Deploy Azure Bicep using Azure DevOps Pipelines
Have you been looking at Project Bicep? Creating some Bicep configurations and wanting to deploy via Azure DevOps? In this blog post, I am going to show how you can deploy an Azure Bicep file using Azure DevOps! What is…
Azure DevOps Pipelines – Remove the need to hard-code
Creating Azure DevOps Pipelines? If avoidable, try not hard code values within your DevOps pipeline! In this blog post; I am going to go through a small Terraform pipeline from hard-coded values to using parameters & variables What is hard-code?…
Read More Azure DevOps Pipelines – Remove the need to hard-code
Creating Templates For Azure DevOps Pipeline Jobs
Azure DevOps pipeline templates allow you to create multiple types of templates that you can define and reuse in multiple pipelines. In this blog post I am going to show how you can create template jobs! Each stage will have…