Table of Contents

Microsoft Kubernetes

https://www.youtube.com/watch?v=mAGqnX2WW1M

IP addressing GCP blog

https://cloud.google.com/blog/products/containers-kubernetes/best-practices-for-kubernetes-pod-ip-allocation-in-gke

Kubernetes Cluster

https://www.cherryservers.com/blog/install-kubernetes-on-ubuntu

minkube

https://www.linuxtechi.com/install-use-docker-on-ubuntu/

https://www.linuxtechi.com/how-to-install-minikube-on-ubuntu/

https://joepreludian.medium.com/how-to-start-up-minikube-automatically-via-system-d-2cad99fd79bf

https://www.linuxtechi.com/install-ansible-awx-on-ubuntu/

kubernetes in raspberry pi

https://docs.k3s.io/quick-start

https://www.padok.fr/en/blog/raspberry-kubernetes

Headline

microk8s

https://microk8s.io/docs/addon-portainer

Good guide on kubernetes setup

https://matthewpalmer.net/kubernetes-app-developer/articles/kubernetes-networking-guide-beginners.html

Cluster FS

Cluster FS

https://www.gluster.org/

kuberenetes inside lxd

 lxc launch ubuntu: kub-node01 -c security.privileged=true -c security.nesting=true -c linux.kernel_modules=ip_tables,ip6_tables,netlink_diag,nf_nat,overlay -c raw.lxc=lxc.apparmor.profile=unconfined
lxc launch ubuntu: kub-cluster -c security.privileged=true -c security.nesting=true -c linux.kernel_modules=ip_tables,ip6_tables,netlink_diag,nf_nat,overlay,bridge,br_netfilter,configs -c raw.lxc=lxc.apparmor.profile=unconfined
sudo lxc launch --profile default --profile kubernetes ubuntu: kbu-cluster01

setup examples

https://sleeplessbeastie.eu/2020/10/07/how-to-install-kubernetes-on-lxd/

https://uthark.github.io/post/2020-09-02-installing-kubernetes-raspberrypi/

https://pixelrobots.co.uk/2021/03/building-a-raspberry-pi-kubernetes-cluster-on-ubuntu-20-04-using-kubeadm-and-containerd-as-the-runtime/

curl -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key add

ip yaml

network:
    version: 2
    ethernets:
        eth0:
           dhcp4: false
           addresses: [10.11.18.201/24]
           gateway4: 10.11.18.1
           nameservers:
              addresses: [10.11.18.1]