Install Kubernetes on My PC

·
1 min read
notes
#kubernetes #ubuntu #debian #snap #juju

Installing Kubernetes via Juju

Prerequisite

Install snapd if you don’t have it yet:

Terminal window
sudo apt install snapd

Install LXD

Install LXD and add current user permission to use LXD.

Terminal window
$ sudo snap install lxd
$ sudo usermod -a -G lxd <youruser>
$ newgrp lxd
$ lxc network set lxdbr0 ipv6.address none ipv6.nat false
$ /snap/bin/lxd init

Install Kubernetes

Terminal window
$ conjure-up kubernetes

Done.