Skip to main content

Posts

Showing posts with the label Azure

Azure CICD using DevOps

Create Azure subscription and use it in pipelines and releases Environment:Azure Cloud Server URL:https://management.azure.com/ Scope Level: Subscription Subscription Id: Subscription Name: Service Principal Id: Credential: service principal key Tenant ID: Service Connection Name: subscription_name Security: Grant access permission to all pipelines Step1: Create Pipeline -   azure-pipelines.yml - ensure auto trigger # Maven # Build your Java project and run tests with Apache Maven. # Add steps that analyze code, save build artifacts, deploy, and more: # https://docs.microsoft.com/azure/devops/pipelines/languages/java trigger : -  master -  releases/* pool :    vmImage :  ubuntu-latest steps : -  task :  Maven@3    inputs :      mavenPomFile :  'pom.xml'      mavenOptions :...