Skip to content

siler23/MultiArchDockerKubernetes

Repository files navigation

From Docker to Kubernetes - Multi-Arch with Go and Nodejs

Prerequisites

  • Have an up and running Kubernetes cluster
  • Setup access to that cluster using kubectl
  • Download docker on your workstation

This guide will start by looking at what Official Repositories are and how to build from them. Then, it will shine light on how to tell if an app will run on your platform (architecture). Next, we will look at how best to build images for go and nodejs in docker with examples and then actually build these images with Multi-Architecture manifests. Finally, we will use these images or my pre-built images to deploy to a Kubernetes cluster.

Get the Code

The code for this guide is on this github. If you have git installed, it can be brought onto your computer with git clone https://github.com/siler23/MultiArchDockerKubernetes.git. If you don't have git or don't want to clone this repo, you can use the download link in the top right corner of this page. Download Image

Let's Begin

Go to the docs