The notebook
Writing - page 4
distributed systemsBuilding a gRPC Server in Go
Build a gRPC server in Go from a .proto contract, generate service stubs, implement an RPC endpoint, and inspect it with reflection and grpcurl.
Updated · originally
distributed systemsIntroduction to gRPC
What gRPC is, how Protocol Buffers and HTTP/2 fit together, and when it beats REST or WebSockets for service-to-service calls.
Updated · originally
iotAutomating Raspberry Pi K3s provisioning with Ansible
In this article, we will be looking at how we can automate most of the steps involved in installing a Raspberry Pi+K3s cluster by using Ansible. I…
talksGo for .NET Developers
This blog post kind of different from my usual ones since this is based on a recent talk I delivered at the Adelaide .NET User Group on the 09 Dec…
kubernetesA closer look at commands and args in Kubernetes Pods
In my previous blog post, we looked at how commands and args work in Docker. If you missed that one, the link is down below. A closer look at commands…
iotBuilding your own private Kubernetes cluster on a Raspberry PI 4 with K3S
Build a two-node Kubernetes cluster on Raspberry Pi 4s with k3s, from flashing the SD card through cgroups, static IPs and joining the agent.
Updated · originally
kubernetesTips and Tricks to Ace the Certified Kubernetes Application Developer
How I prepared for the Certified Kubernetes Application Developer exam, and the kubectl habits that save the most time under the clock.
containersSetting up Elastic Workplace Search with Docker
Recently I started looking into Elastic Enterprise Search's Elastic Workplace Search offering. The configuration was not quite obvious when I first…
containersA closer look at commands and args in Docker containers
Today we will be looking at how we can make use of commands and args in Docker to run our own processes when we spin up containers. This could be…
asp.net coreASP.NET Core Health Checks
Add health checks to an ASP.NET Core service, expose them on an endpoint, and choose which dependencies belong in a readiness signal.