Kubernetes API Terms Oct 15, 2021 Overview My notes on the Kubernetes API terminology. API-Server The K8s core component api-server is at the heart of the interactions made by Client and other K8s components. It is the only component that can interact with the the etcd (key-value) store. ...
Azure Vms Resource Graph Queries May 24, 2021 Why use Resource Graph instead Az CLI/ PowerShell? If we want to search for resources meeting certain criteria across all our subscriptions, we can’t use Az CLI or Az PowerShell to do this type of queries since it would require a lot of overhead to filter and switch between subscription contexts. ...
PowerShell to C# & back - JSON Create, Beautify Oct 5, 2020 Background I have been following up the C# Tutorial and working my way through examples and converting them to PowerShell and notes. JSON Create object Interesting to see that System.Text.Json namespace offers Utf8JsonWriter type to write JSON (UTF-8 encoded) string from common . ...
PowerShell to C# & back - JSON Seriazlie & Deserialize Sep 25, 2020 Background In the below previous post PowerShell to C# & back - JSON parse & enumerate there were notes on how to enumerate & iterate over JSON documents. Let’s continue down the rabbit hole. ...
PowerShell to C# & back - JSON parse & enumerate Sep 16, 2020 Background Coming from PowerShell background, while learning ASP.NET Core based development I wanted to wrap my head around how to handle JSON, so ended up taking notes on how to do this in C# and as an exercise convert those into PowerShell code snippets for my reference. ...