Fix searxng TZ: America/Los Angeles -> America/Los_Angeles
Validate and Deploy to K3s / validate (push) Successful in 18s
Validate and Deploy to K3s / deploy (push) Successful in 31s

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 <noreply@anthropic.com>
This commit is contained in:
jasonwitty
2026-08-05 12:04:42 -07:00
parent 0cb0cc7620
commit 0c691e863d
2 changed files with 7 additions and 6 deletions
+3 -2
View File
@@ -94,8 +94,9 @@ to secrets and no delete verbs.
deployment selectors are immutable; its helm release record still exists in 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 the cluster — don't run `helm upgrade/uninstall` on it, this repo is the
source of truth now. source of truth now.
- searxng's `TZ=America/Los Angeles` (missing underscore) is invalid tzdata — - ~~searxng's `TZ=America/Los Angeles` (missing underscore) is invalid tzdata —
container falls back to UTC. 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 - vaultwarden and home-assistant carry helm-chart-era label/name shapes but
their release records are gone; they are plain manifests now. their release records are gone; they are plain manifests now.
- pihole runs `privileged: true` with `PIHOLE_UID=0`. - pihole runs `privileged: true` with `PIHOLE_UID=0`.
+4 -4
View File
@@ -4,9 +4,9 @@
# helm release (helm delete --no-hooks would delete resources; instead just # 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). # treat this repo as the source of truth and never run helm against it).
# Names keep the timestamped release suffix because selectors are immutable. # Names keep the timestamped release suffix because selectors are immutable.
# NOTE (faithful to live state): TZ value "America/Los Angeles" is missing the # DIVERGENCE: TZ is America/Los_Angeles here. The live value was
# underscore — an invalid tzdata name, so searxng falls back to UTC. Kept as-is; # "America/Los Angeles" (missing underscore) — invalid tzdata, so the container
# fix to America/Los_Angeles when convenient. # silently fell back to UTC. Corrected 2026-08-05.
apiVersion: apps/v1 apiVersion: apps/v1
kind: Deployment kind: Deployment
metadata: metadata:
@@ -45,7 +45,7 @@ spec:
- name: INSTANCE_NAME - name: INSTANCE_NAME
value: witty-one-off-searxng value: witty-one-off-searxng
- name: TZ - name: TZ
value: America/Los Angeles value: America/Los_Angeles
ports: ports:
- name: http - name: http
containerPort: 8080 containerPort: 8080