If you ever encounter the following error, I'll show you one way that helped me resolve my AKS cluster. The cluster is in a failed state. If you didn't do an operation, AKS may resolve the provisioning status automatically if your cluster applications continue to run. To further troubleshoot, you can refer to https://github.com/MicrosoftDocs/SupportArticles-docs/blob/main/support/azure/azure-kubernetes/cluster-node-virtual-machine-failed-state.md For …
Tag: Azure
Installing Kubelogin in WSL Ubuntu 20.04
I like to share in hoping to have helped the small minority that couldn't get kubelogin setup properly with the struggles that I have been having. My desktop environment WSL on Windows 10 Ubuntu 20.04 Here's my error ~/linux-scripts $ kubelogin convert-kubeconfigerror: unknown command "convert-kubeconfig" for "kubelogin" I should have paid attention that the kubelogin …
Upgrading My Azure Kubernetes Service Cluster
The process of upgrading an AKS cluster involves careful consideration due to its complexity, especially in production environments. Manual control plane and node pool upgrades are essential, requiring meticulous monitoring and careful planning. Consider the extensive documentation for detailed guidance.
Scripting Azure CLI with 6 Features in GitHub Copilot
GitHub Copilot is your AI programmer and I use it via an VS Code extension. I find this to be the most effective AI tool that I have come across so far. I have used this in scenarios when I am scripting with Azure PowerShell, Az CLI and Azure SDK for Python. Here are my …
Continue reading Scripting Azure CLI with 6 Features in GitHub Copilot
Deploying Azure Kubernetes Service Demo Store App with Azure Open AI – Part 2
This blog post is a continuation of Deploying Azure Kubernetes Service Demo Store App with Azure Open AI – Part 1. It dives into the Python code that calls the Azure Open AI Service and highlights the use of Semantic Kernel. The AKS Demo Store uses the AI functionality to generate product descriptions. The article emphasizes the benefits of using Azure Kubernetes Service (AKS) to support AI Ops platform.
Deploying Azure Kubernetes Service Demo Store App with Azure Open AI – Part 1
This blog series chronicles my experience deploying and learning the technical details of the AKS Demo Store App with Azure Open AI. The app uses AI to generate product descriptions, deployed in a Kubernetes architecture. It showcases Azure Open AI's potential and the future application focus.
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.
Using GitHub Actions To Run My Python Azure Command Line Tool – Part 1
In a series on building a command line tool with Python and Azure SDK for Python, I show how I use GitHub Actions to automate the build and running of the tool. #Azure #GithubActions
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 Azure SDK for Python in Windows VS Code – Part 3
In this blog post I will run Python code in VSCode and show the experience. This is a continuation of Part 2 about setting up a python local development environment and install prerequisites. I have put together a Python script that does the following Authenticate with user credentials Look up an existing resource group with …
Continue reading Step-by-Step Azure SDK for Python in Windows VS Code – Part 3