From b4472b41214eeeacce071df41bf0f782e1f16d6d Mon Sep 17 00:00:00 2001 From: "Gabriel A. Giovanini" Date: Thu, 9 Jun 2022 20:10:19 +0200 Subject: feat: Move from pico to custom css Use css from my current blog, which is a lot smaller. The text itself looks good but the code still breaks the page. Metrics: - hyper: 16.37 KB / 16.47 KB transferred - 1 request --- content/posts/2020-07-12Road_to_local_K8S.html | 150 ++++++++++++------------- 1 file changed, 75 insertions(+), 75 deletions(-) (limited to 'content') diff --git a/content/posts/2020-07-12Road_to_local_K8S.html b/content/posts/2020-07-12Road_to_local_K8S.html index 5d34b27..52820b3 100644 --- a/content/posts/2020-07-12Road_to_local_K8S.html +++ b/content/posts/2020-07-12Road_to_local_K8S.html @@ -1,43 +1,43 @@
-

Goal

-

+

Goal

+

The goal is to deploy kubernetes on my local networks, and keep everything as reproducible as possible. -

-

Stack

-

+

+

Stack

+

I'll use Fedora Core OS, Matchbox and Terraform 1, a match the requirements for Tectonic2.

-

Steps

- -

Network Setup DHCP/TFTP/DNS

-

First learning the basics

- -

+

Steps

+ +

Network Setup DHCP/TFTP/DNS

+

First learning the basics

+ +

To check open ports -

lsof -Pni | grep LISTEN
-

-

+

lsof -Pni | grep LISTEN
+

+

Run the provided6 image with dnsmasq and PXE toolkit -

docker run --rm --cap-add=NET_ADMIN --net=host quay.io/coreos/dnsmasq \
+    
docker run --rm --cap-add=NET_ADMIN --net=host quay.io/coreos/dnsmasq \
   -d -q \
   --dhcp-range=192.168.1.3,192.168.1.254 \
   --enable-tftp --tftp-root=/var/lib/tftpboot \
@@ -54,48 +54,48 @@
   --address=/matchbox.example/192.168.1.2 \
   --log-queries \
   --log-dhcp
-

-

Matchbox

-

...

-

PXE network boot enviroment

-

...

-

Terraform Tectonic

-

...

-

Links

-
- 1 - - https://coreos.com/tectonic/docs/latest/install/bare-metal/metal-terraform.html - -
-
- 2 - - https://coreos.com/tectonic/docs/latest/install/bare-metal/requirements.html - -
-
- 3 - - https://coreos.com/matchbox/docs/latest/network-setup.html - -
-- cgit v1.2.3