16 Commits

Author SHA1 Message Date
renovate[bot] 23e04a3ca3 chore(deps): update helm chart authentik to v2026.8.1 2026-09-01 20:00:45 +00:00
Ruben Hensen ec5405fc29 bolletjestrui: deploy main-10268f1 (routes, voting, push, ride uploads)
Adds the VAPID keypair for web push and raises the ingress body limit to 25m to
match the app's BODY_SIZE_LIMIT, since a bulk route import posts every GPX in one
request.

The VAPID env refs are optional:true on purpose — a missing key in a secretKeyRef
puts the pod in CreateContainerConfigError, and the app already handles absent
keys by sending no notifications.
2026-08-15 17:55:37 +02:00
Ruben Hensen b50f8dc5b6 bolletjestrui: deploy main-8f17b5d (editable etappe titles) 2026-07-24 11:36:21 +02:00
Ruben Hensen 06dd19e5de bolletjestrui: deploy main-878b462 (select chevron fix) 2026-07-24 11:13:54 +02:00
Ruben Hensen 29847b1f12 bolletjestrui: deploy main-cca932c (global scoring setting) 2026-07-24 10:55:50 +02:00
Ruben Hensen 52b58835c0 bolletjestrui: deploy main-b3bfe55 + BODY_SIZE_LIMIT 25M (20MB profile photos) 2026-07-23 23:20:57 +02:00
Ruben Hensen 1d7d625d53 bolletjestrui: deploy main-7e1236d (mobile hamburger menu) 2026-07-23 22:27:43 +02:00
Ruben Hensen a3dadcd50f bolletjestrui: deploy main-923b40f (climb-matching CSV streams fix) 2026-07-23 21:09:47 +02:00
Ruben Hensen 095d82af02 bolletjestrui: bump image to main-60c604c 2026-07-22 12:08:41 +02:00
Ruben Hensen aabe5ad349 bolletjestrui: bump image to main-1a46d10 2026-07-22 11:55:40 +02:00
Ruben Hensen 851f9e4a20 bolletjestrui: bump image to main-041b4e0 2026-07-22 11:40:52 +02:00
Ruben Hensen 0b5eb69f84 bolletjestrui: bump image to main-1e286f5 2026-07-22 11:31:41 +02:00
Ruben Hensen 15d7916e81 bolletjestrui: bump image to main-d21edde 2026-07-22 11:03:46 +02:00
Ruben Hensen d2f5d5eac6 bolletjestrui: bump image to main-86048a8
Even more generous detection; NC climbs now score a point.
2026-07-21 16:53:18 +02:00
Ruben Hensen c0b4a7183b bolletjestrui: bump image to main-b5baf1f
Generous climb detection (min length/grade/score lowered, Cat 4 floor)
and the climb category editor fix.
2026-07-21 16:36:59 +02:00
Ruben Hensen 8e60f6796a node001: tunnel vic.rubenhensen.nl to the home cluster
Add vic.rubenhensen.nl to tunneledHosts so the edge box does SNI
passthrough on :443 and the :80 ACME/redirect vhost for it, matching
the DNS record. Without this, vic falls through to Stalwart on :8443
and cert-manager's HTTP-01 challenge can't be reached.
2026-07-21 15:29:49 +02:00
5 changed files with 36 additions and 5 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ spec:
sources: sources:
- chart: authentik - chart: authentik
repoURL: https://charts.goauthentik.io repoURL: https://charts.goauthentik.io
targetRevision: 2026.2.1 targetRevision: 2026.8.1
helm: helm:
values: | values: |
authentik: authentik:
+21 -3
View File
@@ -17,7 +17,7 @@ spec:
app: bolletjestrui app: bolletjestrui
spec: spec:
containers: containers:
- image: ghcr.io/rubenhensen/bolletjestrui:main-bb54c6a - image: ghcr.io/rubenhensen/bolletjestrui:main-10268f1
name: bolletjestrui name: bolletjestrui
ports: ports:
- containerPort: 3000 - containerPort: 3000
@@ -31,9 +31,9 @@ spec:
value: x-forwarded-proto value: x-forwarded-proto
- name: HOST_HEADER - name: HOST_HEADER
value: x-forwarded-host value: x-forwarded-host
# route GPX uploads can be a few MB; raise adapter-node's 512K default # GPX routes and profile photos (up to 20 MB); raise adapter-node's 512K default
- name: BODY_SIZE_LIMIT - name: BODY_SIZE_LIMIT
value: "10M" value: "25M"
- name: TZ - name: TZ
value: Europe/Amsterdam value: Europe/Amsterdam
- name: SITE_PASSWORD - name: SITE_PASSWORD
@@ -51,6 +51,24 @@ spec:
secretKeyRef: secretKeyRef:
name: bolletjestrui-secrets name: bolletjestrui-secrets
key: key_secret key: key_secret
# Push notifications. optional:true is load-bearing: without it a missing
# key leaves the pod in CreateContainerConfigError and the site is down,
# which would make deploying this depend on the Vault entries landing
# first. The app already treats absent VAPID keys as "send nothing".
- name: VAPID_PUBLIC_KEY
valueFrom:
secretKeyRef:
name: bolletjestrui-secrets
key: vapid_public_key
optional: true
- name: VAPID_PRIVATE_KEY
valueFrom:
secretKeyRef:
name: bolletjestrui-secrets
key: vapid_private_key
optional: true
- name: VAPID_SUBJECT
value: mailto:ruben.hensen@protonmail.com
resources: resources:
requests: requests:
memory: "128Mi" memory: "128Mi"
+11
View File
@@ -23,3 +23,14 @@ spec:
remoteRef: remoteRef:
key: kv/bolletjestrui key: kv/bolletjestrui
property: key_secret property: key_secret
# web-push keypair for the "de route is gekozen" notification.
# Generate once with `npx web-push generate-vapid-keys` and never rotate it:
# a new key invalidates every subscription on everyone's phone.
- secretKey: vapid_public_key
remoteRef:
key: kv/bolletjestrui
property: vapid_public_key
- secretKey: vapid_private_key
remoteRef:
key: kv/bolletjestrui
property: vapid_private_key
+2 -1
View File
@@ -6,7 +6,8 @@ metadata:
cert-manager.io/cluster-issuer: prod-cluster-issuer cert-manager.io/cluster-issuer: prod-cluster-issuer
nginx.ingress.kubernetes.io/backend-protocol: "HTTP" nginx.ingress.kubernetes.io/backend-protocol: "HTTP"
nginx.ingress.kubernetes.io/ssl-passthrough: "false" nginx.ingress.kubernetes.io/ssl-passthrough: "false"
nginx.ingress.kubernetes.io/proxy-body-size: "10m" # matches the app's BODY_SIZE_LIMIT: a bulk route import posts every GPX at once
nginx.ingress.kubernetes.io/proxy-body-size: "25m"
spec: spec:
ingressClassName: nginx ingressClassName: nginx
rules: rules:
+1
View File
@@ -20,6 +20,7 @@ let
"blog.rubenhensen.nl" "blog.rubenhensen.nl"
"serpbear.rubenhensen.nl" "serpbear.rubenhensen.nl"
"git.rubenhensen.nl" "git.rubenhensen.nl"
"vic.rubenhensen.nl"
]; ];
sniMapEntries = sniMapEntries =