Notion Table with cluster info

Build a Kubernetes Dashboard in Notion using a go controller

Notion is a web based note-taking software. Its supports all kind of note types like kanban boards, tables, lists, and more. This post will show you how to use the Notion api to generate a live updating Kubernetes Dashboard in Notion using a custom controller in golang to show the currently running pods in a Kubernetes cluster. The code to the Repository can be found here Setting up the Notion API To use the Notion API, you need to create a Notion account and create a new integration....

November 28, 2022 · 5 min · Julian Beck

Fast local Development using Ko, Golang, and Minikube

ko is a simple, fast container image builder for Go applications. In combination with minikube, it enables an easy local development cycle. In this post, I will explain how to set up ko to directly build and deploy Golang applications to minikube. First, we need to start a local minikube cluster. Use the following command to deploy a local cluster and set it as the current kubectl context. minikube start Ko can build and push containers to all kinds of registries....

January 1, 2021 · 3 min · Julian Beck