Well Architected Framework With The Azure Verified Module For Azure Kubernetes

I came across the Azure Verified Module for Azure Kubernetes Service and in its Github repo I found a Well Architected Framework (WAF) Aligned example for deploying this Terraform module. So asked myself, "What exactly makes this example of deploying AKS WAF Aligned?" Before I get into that, let me explain what is WAF.  It …

Continue reading Well Architected Framework With The Azure Verified Module For Azure Kubernetes

Deep Dive Into Fine-Tuning An LM Using KAITO on AKS – Part 2: Execution

I will continue from the Part 1 to execute the deployment of the fine-tuning workspace job. This blog post is part of a series.Part 1: Intro and overview of the KAITO fine-tuning workspace yamlPart 2: Executing the Training Kubernetes Training JobPart 3: Deploying the Fine-Tuned ModelPart 4: Evaluating the Fine-Tuned Model Let' start the fine …

Continue reading Deep Dive Into Fine-Tuning An LM Using KAITO on AKS – Part 2: Execution

Using GitHub Actions To Run My Python Azure Command Line Tool – Part 2

The post introduces GitHub Actions and a workflow with an Azure service principal name. The workflow YAML code involves manual user trigger, Azure login, Python setup, package installation, building a command line tool, and executing it with workflow input values. The post also provides the workflow YAML file and emphasizes the use of GitHub Actions for custom command line tool creation and Azure integration.

Step-by-Step Using Azure SDK for Python in Windows VS Code – Part 4

In building a python script demo in Part 3, I want to show how to package up the python script into a windows executable with command line arguments. This is so what it can be run in windows command prompt or PowerShell session. The python packages to use is Click and Setuptools Click is a …

Continue reading Step-by-Step Using Azure SDK for Python in Windows VS Code – Part 4

Step-by-Step Using Azure SDK for Python in Windows VS Code – Part 1

This is a beginners guide on starting from scratch setting up a simple development environment and run some Python code to create and manage azure resources. Install Python https://wiki.python.org/moin/BeginnersGuide/Download For windows download go to https://www.python.org/downloads/ Install VS Code to develop and run python code. For windows download go to https://www.python.org/downloads/ Install Python extension for Visual …

Continue reading Step-by-Step Using Azure SDK for Python in Windows VS Code – Part 1

Code Comparison Between Azure PowerShell and Azure SDK for Python

I like to share similarities and differences of two scripts - an Azure PowerShell script and a Python script using the Azure SDK. These two scripts achieve the same azure management result. Hope this article sheds some technical insights by comparing these scripts. The scripts connect to an Azure subscription, create a storage account into …

Continue reading Code Comparison Between Azure PowerShell and Azure SDK for Python

My Experience Using ChatGPT To Create An Azure DevOps Pipeline with Terraform in Deploying Azure Resources

I wanted to explore using ChatGPT exclusively to create Create An Azure DevOps Pipeline with Terraform in Deploying Azure Resources as if I never created such a pipeline before. I want to explore the following How effective using ChatGPT enabled me achieve my objective? How natural was the chat bot experience to me as a …

Continue reading My Experience Using ChatGPT To Create An Azure DevOps Pipeline with Terraform in Deploying Azure Resources

How To Mount Azure Key Vault Secret to Pods in Azure Kubernetes Service

Scenario: You require a pod to mount a secret stored in an Azure Key Vault. So that an application running in the pod can access the secret as a file and environment variable. Also manage the access security between the AKS cluster to the key vault using a user assigned managed identity. Background: To integrate …

Continue reading How To Mount Azure Key Vault Secret to Pods in Azure Kubernetes Service