Skaffold to k3s RaspberryPi Cluster

Introduction Skaffold is a useful tool for deploying to Kubernetes. You can deploy many Kubernetes resources with one Skaffold command even if it is Helm or Kastomize definition. In cluster for development, it is works as resident process then, the cluster reacted each time you change the local definition of Kubernetes resources. Installing Skaffold Please get source code first. An error message appears but it is no problem. $ go get github....

May 12, 2019 · 2 min · Me

Launch NFS on Raspberrypi

Introduction NFS is very useful tool to mount volumes and share files. That is also used as a PersistentVolume of Kubernetes, so it is meaningfull that to know how to launch nfs server on your RaspberryPi on recent k3s movement. Install NFS If you use raspbian, you just execute a command. $ sudo apt-get install -y nfs-common nfs-server Please make directory to be mounted. $ sudo mkdir /mnt/share $ sudo chmod -R 777 /mnt/share Then, add setting to /etc/exports...

May 5, 2019 · 2 min · Me

Launch Plex on RaspberryPi k3s Cluster

Introduction Plex is a media server works on Linux. You can enjoy movie or music from Plex, and the UI is very useful. This works as DLNA server too, and the setting is very easy. If you buy PlesPass, which is paid version of Plex, additional function is unlocked for you. However, free version is also enough for the basic funcionality. People may operate Plex on docker, but operating it on Kubernetes is meaningful for the users who operate many apps other than Plex....

May 5, 2019 · 3 min · Me

Install Helm to ARM k3s cluster

Introduction Helm is a tool for deploying apps to Kubernetes. It is time consuming that deploying a bunch of pods by hand, but Helm is very useful for such situation. Helm enables users to deploy many resources Kubernetes at once. It also works like “apt” or “yum” because you can load Helm charts that made by someone else from Helm repository. This page introduces that how to install Helm to your ARM k3s cluster....

May 4, 2019 · 2 min · Me

Connect to Raspberrypi with SSH

Introduction After you setup Raspberry pi like this page, you are able to execute any command and get response from HDMI monitor. To make it more useful, you might think to log in from remote host. I will introduce the way how to set up ssh with Raspberry pi. Set password of pi account First of all you should change the password of pi account. Please hit this command. $ passwd After hit this command, a interactive setting will start, so please follow the guidance....

May 3, 2019 · 1 min · Me