Deploy Microservice in Kubernetes (AKS) using Azure DevOps Pipeline Part 2/2

preview_player
Показать описание
This is the last part of videos to deploy a Microservice in Azure Kubernetes cluster using Azure DevOps Pipeline and Terraform.

This video specifically talks about deploying a sample python Microservice in Azure AKS(created in part 1) using Azure DevOps Pipeline.

Few helpful Links given below :-

GitHub Repo used in this video :-

Azure Marketplace TerraformCLI plugins:-

Azure CLI commands used in this video :-

az login
az ad sp create-for-rbac --role="Contributor" --scopes="subscriptions/SUBSCRIPTION_ID"

SSH key generation to create public key :-

ssh-keygen -m PEM -t rsa -b 4096

Connecting AKS from Azure CLI :-

az aks get-credentials --name K8_CLUSTER_NAME --resource-group K8_GROUP_NAME
az aks enable-addons --addons kube-dashboard --resource-group K8_GROUP_NAME --name K8_CLUSTER_NAME
az aks browse --resource-group K8_GROUP_NAME --name K8_CLUSTER_NAME
Рекомендации по теме
Комментарии
Автор

as terraform has .tfstate file, even you run the cluster creation pipeline, it will not create once again. the tasks would be completed in few secs

muralis