summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-08-11 15:58:06 +0300
committerPaul Buetow <paul@buetow.org>2025-08-11 15:58:06 +0300
commitffb93ff22df34b412f8492fb209cc48913749d9c (patch)
tree372a2295149c2e48977316523b629efda083ca3c
parent1230c35c66636f76c2c177a6feeaae862e24ae27 (diff)
fix
-rw-r--r--f3s/radicale/helm-chart/templates/deployment.yaml2
-rw-r--r--frontends/Rexfile6
2 files changed, 6 insertions, 2 deletions
diff --git a/f3s/radicale/helm-chart/templates/deployment.yaml b/f3s/radicale/helm-chart/templates/deployment.yaml
index 98701df..2266088 100644
--- a/f3s/radicale/helm-chart/templates/deployment.yaml
+++ b/f3s/radicale/helm-chart/templates/deployment.yaml
@@ -15,7 +15,7 @@ spec:
spec:
containers:
- name: radicale
- image: registry.lan.buetow.org:30001/radicale-server:latest
+ image: registry.lan.buetow.org:30001/radicale:latest
ports:
- containerPort: 5232
volumeMounts:
diff --git a/frontends/Rexfile b/frontends/Rexfile
index 033ae2a..88351a6 100644
--- a/frontends/Rexfile
+++ b/frontends/Rexfile
@@ -76,7 +76,11 @@ our @dns_zones_remove = qw//;
# k3s cluster running on FreeBSD in my LAN
our @f3s_hosts =
- qw/f3s.buetow.org anki.f3s.buetow.org bag.f3s.buetow.org flux.f3s.buetow.org audiobookshelf.f3s.buetow.org gpodder.f3s.buetow.org radicale.f3s.buetow.org vault.f3s.buetow.org syncthing.f3s.buetow.org uprecords.f3s.buetow.org registry.f3s.buetow.org/;
+ qw/f3s.buetow.org anki.f3s.buetow.org bag.f3s.buetow.org flux.f3s.buetow.org audiobookshelf.f3s.buetow.org gpodder.f3s.buetow.org radicale.f3s.buetow.org vault.f3s.buetow.org syncthing.f3s.buetow.org uprecords.f3s.buetow.org/;
+
+# optionally, only enable manually for temp time, as no password protection yet
+# push @f3s_hosts, 'registry.f3s.buetow.org';
+
our @acme_hosts =
qw/buetow.org git.buetow.org paul.buetow.org dory.buetow.org solarcat.buetow.org blog.buetow.org fotos.buetow.org znc.buetow.org dtail.dev foo.zone stats.foo.zone irregular.ninja alt.irregular.ninja snonux.foo/;
push @acme_hosts, @f3s_hosts;