From 0c691e863d38be059565ff853d50b00510be09b6 Mon Sep 17 00:00:00 2001 From: jasonwitty Date: Wed, 5 Aug 2026 12:04:42 -0700 Subject: [PATCH] Fix searxng TZ: America/Los Angeles -> America/Los_Angeles The space made it an invalid tzdata name, so the container silently fell back to UTC. Standard searxng container config, unrelated to the ai_summary fork changes. Co-Authored-By: Claude Opus 5 --- README.md | 5 +++-- apps/searxng/deployment.yaml | 8 ++++---- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index a0dad8a..4bda745 100644 --- a/README.md +++ b/README.md @@ -94,8 +94,9 @@ to secrets and no delete verbs. deployment selectors are immutable; its helm release record still exists in the cluster — don't run `helm upgrade/uninstall` on it, this repo is the source of truth now. -- searxng's `TZ=America/Los Angeles` (missing underscore) is invalid tzdata — - container falls back to UTC. +- ~~searxng's `TZ=America/Los Angeles` (missing underscore) is invalid tzdata — + container falls back to UTC.~~ Fixed 2026-08-05: corrected to + `America/Los_Angeles` in the manifest and deployed via the pipeline. - vaultwarden and home-assistant carry helm-chart-era label/name shapes but their release records are gone; they are plain manifests now. - pihole runs `privileged: true` with `PIHOLE_UID=0`. diff --git a/apps/searxng/deployment.yaml b/apps/searxng/deployment.yaml index 9dc691a..5ab16d1 100644 --- a/apps/searxng/deployment.yaml +++ b/apps/searxng/deployment.yaml @@ -4,9 +4,9 @@ # helm release (helm delete --no-hooks would delete resources; instead just # treat this repo as the source of truth and never run helm against it). # Names keep the timestamped release suffix because selectors are immutable. -# NOTE (faithful to live state): TZ value "America/Los Angeles" is missing the -# underscore — an invalid tzdata name, so searxng falls back to UTC. Kept as-is; -# fix to America/Los_Angeles when convenient. +# DIVERGENCE: TZ is America/Los_Angeles here. The live value was +# "America/Los Angeles" (missing underscore) — invalid tzdata, so the container +# silently fell back to UTC. Corrected 2026-08-05. apiVersion: apps/v1 kind: Deployment metadata: @@ -45,7 +45,7 @@ spec: - name: INSTANCE_NAME value: witty-one-off-searxng - name: TZ - value: America/Los Angeles + value: America/Los_Angeles ports: - name: http containerPort: 8080