Bridge to Kubernetes

Bridge to Kubernetes redirects traffic between your connected Kubernetes cluster and your development computer. Local code and services in your Kubernetes cluster can communicate as if they’re in the same Kubernetes cluster. [Read More]
K8s 

Podman

Podman, an Open Source Docker replacement. Podman Desktop, an Open Source Docker Desktop replacement, letting you avoid paying for a Docker Desktop subscription. Why? Need an easy way to run containers locally. [Read More]
Docker  K8s  Podman 

Java on Apple M1 Mac

How to fix problems which might occur when running Java and Spring Boot on a Mac with Apple M1 processor. Problem 1 Unable to load io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider, fallback to system defaults. [Read More]
Docker  Mac 

Docker Compose on K8s

Docker Compose is currently used by millions of developers and with over 650,000 Compose files on GitHub, Compose has been widely embraced by developers because it is a simple cloud and platform-agnostic way of defining multi-container based applications. [Read More]
Docker  K8s 

Docker on K8s

Traditional docker engine in K8s is kaput, gone. We need to build docker images another way. https://kubernetes.io/blog/2020/12/02/dont-panic-kubernetes-and-docker/ https://technologyconversations.com/2020/12/09/kaniko-building-container-images-in-kubernetes-without-docker/#more-4757 Different ways of building your docker containers in K8s without docker engine Description Note BuildKit DOCKER_BUILDKIT=1 docker build . [Read More]
Docker  K8s 

Development with K8s locally

Different ways to run “lightweight” K8s locally, and a basic measurement of how resource heavy it is. Kind kind creates local multi-node Kubernetes clusters using Docker container nodes. [Read More]
Docker  K8s 

Docker on Mac, and Hyperkit

Docker on Mac has an unusual architecture which makes it difficult to get a clear picture of resource consumption. Docker relies on features unique to the Linux kernel like cgroups to implement containers and as a result, requires Linux to run. [Read More]
Docker  Mac