Microsoft Certified: AI Certs Critically Reviewed

Earlier this year I passed both the AI-900: Microsoft Azure AI Fundamentals and the more advanced AI-102: Microsoft Azure AI Engineer Associate exams. This track was compelling dur to both the topical nature of the subject matter and as stepping stones toward my longer term plan of attaining AZ-305: Azure Solutions Architect Expert. I found them to be quite different in scope, depth, and the type of preparation required. This short blog goes through some of these aspects and is intended as a primer to anyone else considering the certifications themselves. ...

April 1, 2025 · 3 min · Tim Jones

Kubernetes Operators: A Practical Dive Using Go and Kustomize

Kubernetes has revolutionized the way we deploy and manage containerized applications. However, as applications grow in complexity, managing their lifecycle becomes increasingly challenging. Enter Kubernetes Operators—a powerful pattern that extends Kubernetes’ capabilities to manage complex applications seamlessly. In this article, we’ll explore what Operators are, why they’re beneficial, and how to build one using Go and Kustomize, drawing insights from the kube-operator project. What Is a Kubernetes Operator? A Kubernetes Operator is a method of packaging, deploying, and managing a Kubernetes application. It extends the Kubernetes API to create, configure, and manage instances of complex applications on behalf of a Kubernetes user. Operators encode operational knowledge into software, automating tasks like deployment, scaling, and recovery. ...

April 25, 2024 · 5 min · Tim Jones