A curated list of Docker, Kubernetes and IoT-articles
-
My Journey with Deepseek R1 on NVIDIA Jetson Orin Nano Super using Docker
With over 86,500 GitHub stars, DeepSeek R1 is an innovative large language model developed by DeepSeek AI, designed specifically for efficient deployment on resource-constrained edge devices. Unlike many larger models that require substantial computational resources, DeepSeek R1 delivers impressive language capabilities in a compact form factor, making it ideal for hardware like the Jetson Orin series.…
Read more about My Journey with Deepseek R1 on NVIDIA Jetson Orin Nano Super using Docker
-
Let’s Talk: Why Your Community Meetup Shouldn’t Be a Sales Pitch
Can we have an honest conversation about community meetups? I’ve been on both sides of this equation—organizing events and watching well-intentioned marketing teams struggle—and I’ve noticed something important: there’s a fundamental disconnect in how many of us approach community gatherings. If you’ve ever thought of community meetups as primarily promotional opportunities, we need to talk.…
Read more about Let’s Talk: Why Your Community Meetup Shouldn’t Be a Sales Pitch
-
The Rise of Model Context Protocol
I recently had the opportunity to collaborate with Raveendiran RR, a Docker Community Speaker and Generative AI enthusiast, to present on this exciting topic at Cloud-Native LLMOps Day in Bengaluru. Together, we explored the transformative potential of Model Context Protocol in modern AI development workflows, sharing insights with the vibrant tech community. This blog post expands on the key…
-
Introducing KubeArchInspect ~ Kubernetes Image Compatibility Checks for Arm Architecture
Have you noticed how arm64 is making waves in the container world? It started with single-board computers like the Raspberry Pi and mobile devices, but now it’s powering Apple Silicon Macs and cloud offerings from AWS, Google Cloud, Azure, and Hetzner. And the best part? These Arm-based instances are often cheaper than their Intel/AMD counterparts. In fact,…
-
Running Multi-Node Kubernetes Cluster using Docker Desktop
Pre-v4.38.0: Single-Node Cluster Prior to Docker Desktop v4.38.0, Kubernetes support was limited to a single-node cluster ideal for basic testing: v4.38.0+: Multi-Node Clusters with kind Docker Desktop now supports multi-node clusters using kind (Kubernetes IN Docker): Cluster Provisioning Methods Docker Desktop offers two options: Feature kubeadm (Legacy) kind (v4.38.0+) Nodes Single-node only Multi-node (control-plane +…
Read more about Running Multi-Node Kubernetes Cluster using Docker Desktop
-
Behind the Scenes of Organizing Cloud-Native AI Day in Singapore: A Remote Success Story
Last Friday marked an incredible milestone in my journey of organizing tech events. Despite not being physically present, I successfully orchestrated Cloud-Native AI Day in Singapore—a day that brought together some of the brightest minds in the cloud-native and AI space. This was no overnight effort; it was a carefully planned and executed endeavor that…
-
PostgreSQL Model Context Protocol (MCP) Server, Docker and Claude Desktop
Just as USB-C provides a standardized way to connect your devices to various peripherals and accessories, MCP provides a standardized way to connect AI models to different data sources and tools. MCP is an open protocol that standardizes how applications provide context to LLMs. MCP helps you build agents and complex workflows on top of LLMs.…
Read more about PostgreSQL Model Context Protocol (MCP) Server, Docker and Claude Desktop
-
Using a Neo4j Graph Database to Power the Internet of Things
Graph databases excel at representing complex relationships between data points, which can be useful in sensor data analysis.For example, if you have multiple sensors and want to understand how they are related, a graph database can help you model those relationships and perform queries to find patterns or anomalies in the data. It can also…
Read more about Using a Neo4j Graph Database to Power the Internet of Things
-
Expediting Productivity: My Favorite macOS Apps of 2024
As 2024 wraps up, I’ve been reflecting on the tools that helped me get things done this year. If you’re like me, you’re always looking for apps that make life easier, whether it’s coding, creating sample apps for the customer tech talk, or collaborating to organize events. Over the years, I’ve built a solid toolkit…
Read more about Expediting Productivity: My Favorite macOS Apps of 2024
-
How to Fix “E: Unable to Locate Package google-chrome-stable” Error While Building a Docker Image
If you try to build a containerised Web scraping tool using Python, Selenium and Beautiful Soup on Apple M1 Pro, you might encounter the following issue while building the Dockerfile: Assuming that you are using the traditional Dockerfile that reads: To fix this issue, just modify the first line of the Dockerfile and add –platform=linux/amd64 entry. Now…