PAUL'S BLOG

Learn. Build. Share. Repeat.
The YouTube player can not be loaded with disabled JavaScript.
The following video is embedded here:
https://youtube.com/watch?v=LhJODembils

#MSBuild | Integrating Azure AI and Azure Kubernetes Service to build intelligent apps | BRK225H

2023-06-02 1 min read Speaking
I had the opportunity to speak at #MSBuild 2023. Build is Microsoft’s largest developer conference held every year in May. This year, we were lucky enough to get back to a full in-person experience with plenty of awesome sessions with tons of technical demos. I shared the stage with Jorge Palma from the AKS PM team, and we spoke about how you can to integrate Azure AI and Azure Kubernetes Service to build and run your intelligent apps. Continue reading

Purging Deleted Azure Key Vaults

2023-02-27 1 min read Code Snippets
Do you constantly provision and delete Azure Key Vaults? If so, you may have noticed attempts to recreate a recently deleted key vault will result in the following error: The vault name is already in use. This is because Azure Key Vaults are kept in a deleted state and not automatically purged. You must manually purge these key vaults to be able to reuse the name. To confirm the key vault in question is in “deleted” state, you can run the following: Continue reading

Effortlessly Deploy to Azure Kubernetes with Open Source Tools Draft and Acorn

2023-01-03 7 min read Tutorial
UPDATE On March 15, 2024 Acorn Labs announced that they will be shifting focus to developing an LLM app platform based on GPT-Script technology and has archived the Acorn Runtime project. In this post, I’ll walk you through deploying a web application to Azure Kubernetes Service (AKS) without having to write any Docker or Kubernetes manifest files. Using open-source command-line tools Draft and Acorn, we’ll containerize and deploy to AKS in just a few steps! Continue reading

Service Mesh Considerations

2022-12-14 9 min read Architecture
“Build microservices”, they said… “it’ll be fun”, they said… There are many reasons why you would want to deploy a solution based on the microservices architectural pattern, but it comes at a cost. More microservices means more deployments to manage, more microservices to connect, more microservices to secure… yeah, it gets complex real quick. If you’re just getting started with microservices or have a small number of microservices deployed, you may have heard of the term “service mesh”, but not needed one yet. Continue reading

Re-visiting Dev Container Features

2022-12-02 3 min read Tutorial
A few months ago I wrote a post that described how you can add custom features to your Dev Containers. That didn’t age very well 😅 But good news is that there is a better way to add or extend functionality for your Dev Containers. 🥳 Since my original post, @BrigitMurtaugh published a post on the VS Code blog announcing new repos, the open dev container specification and discussed a new way of adding features. Continue reading

Web Application Routing on AKS

2022-11-16 5 min read Architecture
Exposing your web applications on Azure Kubernetes Service (AKS) has gotten a little bit easier. In this post, I will cover the new Web Application Routing feature for AKS and discuss reasons why you may want to implement it within your cluster. Exposing your app You have a lot of options when it comes to exposing your application Pods to the world. If you’re using a managed-Kubernetes service in the cloud, you could deploy a Service and set the type to LoadBalancer and your cloud provider will provision one with a public IP. Continue reading

Ubuntu Dev Tools

2022-11-11 3 min read Code Snippets
Is this the year of the Linux desktop? I’m not sure but I have been making more of an effort to “daily drive” a Linux desktop lately. I’m currently working off of an Ubuntu 22.10 machine and here is my script for installing common tools that I work with daily. sudo apt-get update sudo apt-get upgrade # add git repository sudo add-apt-repository ppa:git-core/ppa # install some basic tools sudo apt-get update sudo apt-get install -y \ python3 \ python3-pip \ bpytop \ tree \ guvcview \ vim \ curl \ git \ gnupg2 \ jq \ sudo \ zsh \ build-essential \ cmake \ libssl-dev \ openssl \ unzip \ pkg-config # install brew tools /bin/bash -c "$(curl -fsSL https://raw. Continue reading
Older posts Newer posts