From fb3c5fe5baf45fca585c13b0ee2d229b678c66a3 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Thu, 5 Feb 2026 21:13:09 +0200 Subject: Update content for html --- about/resources.html | 210 ++++++++++----------- ...5-10-02-f3s-kubernetes-with-freebsd-part-7.html | 20 +- gemfeed/atom.xml | 22 +-- index.html | 2 +- uptime-stats.html | 2 +- 5 files changed, 128 insertions(+), 128 deletions(-) diff --git a/about/resources.html b/about/resources.html index f319550f..712bb49c 100644 --- a/about/resources.html +++ b/about/resources.html @@ -50,112 +50,112 @@ In random order:


Technical references



I didn't read them from the beginning to the end, but I am using them to look up things. The books are in random order:


Self-development and soft-skills books



In random order:


Here are notes of mine for some of the books

@@ -164,31 +164,31 @@ Some of these were in-person with exams; others were online learning lectures only. In random order:


Technical guides



These are not whole books, but guides (smaller or larger) which I found very useful. in random order:


Podcasts



@@ -197,61 +197,61 @@ In random order:


Podcasts I liked



I liked them but am not listening to them anymore. The podcasts have either "finished" (no more episodes) or I stopped listening to them due to time constraints or a shift in my interests.


Newsletters I like



This is a mix of tech and non-tech newsletters I am subscribed to. In random order:


Magazines I like(d)



This is a mix of tech I like(d). I may not be a current subscriber, but now and then, I buy an issue. In random order:


Formal education



diff --git a/gemfeed/2025-10-02-f3s-kubernetes-with-freebsd-part-7.html b/gemfeed/2025-10-02-f3s-kubernetes-with-freebsd-part-7.html index 96ec0ef2..d8081dd4 100644 --- a/gemfeed/2025-10-02-f3s-kubernetes-with-freebsd-part-7.html +++ b/gemfeed/2025-10-02-f3s-kubernetes-with-freebsd-part-7.html @@ -1049,15 +1049,15 @@ _relayd relayd 2903 12 *Adding LAN ingress to services*:

-To expose a service on the LAN, add a second Ingress resource to its Helm chart. Here's an example for Navidrome:
+To expose a service on the LAN, add a second Ingress resource to its Helm chart. Here's an example:

 ---
-# LAN Ingress for navidrome.f3s.lan.foo.zone
+# LAN Ingress for f3s.lan.foo.zone
 apiVersion: networking.k8s.io/v1
 kind: Ingress
 metadata:
-  name: navidrome-ingress-lan
+  name: ingress-lan
   namespace: services
   annotations:
     spec.ingressClassName: traefik
@@ -1065,17 +1065,17 @@ metadata:
 spec:
   tls:
     - hosts:
-        - navidrome.f3s.lan.foo.zone
+        - f3s.lan.foo.zone
       secretName: f3s-lan-tls
   rules:
-    - host: navidrome.f3s.lan.foo.zone
+    - host: f3s.lan.foo.zone
       http:
         paths:
           - path: /
             pathType: Prefix
             backend:
               service:
-                name: navidrome-service
+                name: service
                 port:
                   number: 4533
 
@@ -1094,10 +1094,10 @@ spec: by Lorenzo Bettini http://www.lorenzobettini.it http://www.gnu.org/software/src-highlite --> -
$ kubectl apply -f navidrome-ingress-lan.yaml
-ingress.networking.k8s.io/navidrome-ingress-lan created
+
$ kubectl apply -f ingress-lan.yaml
+ingress.networking.k8s.io/ingress-lan created
 
-$ curl -k https://navidrome.f3s.lan.foo.zone
+$ curl -k https://f3s.lan.foo.zone
 HTTP/2 302 
 location: /app/
 
@@ -1114,7 +1114,7 @@ http://www.lorenzobettini.it http://www.gnu.org/software/src-highlite -->
$ sudo tee -a /etc/hosts << 'EOF'
 # f3s LAN services
-192.168.1.138  navidrome.f3s.lan.foo.zone
+192.168.1.138  f3s.lan.foo.zone
 EOF
 

diff --git a/gemfeed/atom.xml b/gemfeed/atom.xml index 92491865..84118011 100644 --- a/gemfeed/atom.xml +++ b/gemfeed/atom.xml @@ -1,6 +1,6 @@ - 2026-02-05T17:48:12+02:00 + 2026-02-05T21:12:19+02:00 foo.zone feed To be in the .zone! @@ -5397,15 +5397,15 @@ _relayd relayd 2903 12 *Adding LAN ingress to services*:

-To expose a service on the LAN, add a second Ingress resource to its Helm chart. Here's an example for Navidrome:
+To expose a service on the LAN, add a second Ingress resource to its Helm chart. Here's an example:

 ---
-# LAN Ingress for navidrome.f3s.lan.foo.zone
+# LAN Ingress for f3s.lan.foo.zone
 apiVersion: networking.k8s.io/v1
 kind: Ingress
 metadata:
-  name: navidrome-ingress-lan
+  name: ingress-lan
   namespace: services
   annotations:
     spec.ingressClassName: traefik
@@ -5413,17 +5413,17 @@ metadata:
 spec:
   tls:
     - hosts:
-        - navidrome.f3s.lan.foo.zone
+        - f3s.lan.foo.zone
       secretName: f3s-lan-tls
   rules:
-    - host: navidrome.f3s.lan.foo.zone
+    - host: f3s.lan.foo.zone
       http:
         paths:
           - path: /
             pathType: Prefix
             backend:
               service:
-                name: navidrome-service
+                name: service
                 port:
                   number: 4533
 
@@ -5442,10 +5442,10 @@ spec: by Lorenzo Bettini http://www.lorenzobettini.it http://www.gnu.org/software/src-highlite --> -
$ kubectl apply -f navidrome-ingress-lan.yaml
-ingress.networking.k8s.io/navidrome-ingress-lan created
+
$ kubectl apply -f ingress-lan.yaml
+ingress.networking.k8s.io/ingress-lan created
 
-$ curl -k https://navidrome.f3s.lan.foo.zone
+$ curl -k https://f3s.lan.foo.zone
 HTTP/2 302 
 location: /app/
 
@@ -5462,7 +5462,7 @@ http://www.lorenzobettini.it http://www.gnu.org/software/src-highlite -->
$ sudo tee -a /etc/hosts << 'EOF'
 # f3s LAN services
-192.168.1.138  navidrome.f3s.lan.foo.zone
+192.168.1.138  f3s.lan.foo.zone
 EOF
 

diff --git a/index.html b/index.html index 32a27460..7667cf5e 100644 --- a/index.html +++ b/index.html @@ -13,7 +13,7 @@

Hello!



-This site was generated at 2026-02-05T17:48:12+02:00 by Gemtexter
+This site was generated at 2026-02-05T21:12:19+02:00 by Gemtexter

Welcome to the foo.zone!

diff --git a/uptime-stats.html b/uptime-stats.html index dce6de74..cd8064ce 100644 --- a/uptime-stats.html +++ b/uptime-stats.html @@ -13,7 +13,7 @@

My machine uptime stats



-This site was last updated at 2026-02-05T17:48:12+02:00
+This site was last updated at 2026-02-05T21:12:19+02:00

The following stats were collected via uptimed on all of my personal computers over many years and the output was generated by guprecords, the global uptime records stats analyser of mine.

-- cgit v1.2.3