Captured 2026-07-26 from rpi-master (k3s v1.30.3) and cleaned of runtime fields. Six apps as per-app kustomizations: vaultwarden, searxng, home-assistant, nginx, pihole(+unbound), unified-streaming. Intentional divergences from live state: - pihole WEBPASSWORD and USP_LICENSE_KEY moved from inline plaintext env to secretKeyRef (secrets gitignored; templates in secret.example.yaml) - HA ingress defaultBackend fixed (pointed at nonexistent service) - unifiedstreaming-svc kept as ClusterIP (LoadBalancer could never bind port 80 behind svclb-traefik) Validated against the live cluster with kubectl apply --dry-run=server: no immutable-field conflicts; one-time kubectl replace procedure for the two env->secretKeyRef migrations documented in README. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
79 lines
2.5 KiB
YAML
79 lines
2.5 KiB
YAML
# Helm release searxng-1723974683 (chart searxng-1.0.0) in the *default*
|
|
# namespace — the release is still recorded in the cluster, so if you ever
|
|
# `helm upgrade` it, helm and this manifest will fight. Prefer retiring the
|
|
# 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.
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: searxng-1723974683
|
|
namespace: default
|
|
labels:
|
|
app.kubernetes.io/instance: searxng-1723974683
|
|
app.kubernetes.io/name: searxng
|
|
spec:
|
|
replicas: 1
|
|
revisionHistoryLimit: 3
|
|
selector:
|
|
matchLabels:
|
|
app.kubernetes.io/instance: searxng-1723974683
|
|
app.kubernetes.io/name: searxng
|
|
strategy:
|
|
type: RollingUpdate
|
|
rollingUpdate:
|
|
maxSurge: 25%
|
|
maxUnavailable: 25%
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app.kubernetes.io/instance: searxng-1723974683
|
|
app.kubernetes.io/name: searxng
|
|
spec:
|
|
containers:
|
|
- name: searxng-1723974683
|
|
image: searxng/searxng:latest
|
|
imagePullPolicy: Always
|
|
env:
|
|
- name: AUTOCOMPLETE
|
|
value: google
|
|
- name: BASE_URL
|
|
value: http://searxng.wittyoneoff.com/
|
|
- name: INSTANCE_NAME
|
|
value: witty-one-off-searxng
|
|
- name: TZ
|
|
value: America/Los Angeles
|
|
ports:
|
|
- name: http
|
|
containerPort: 8080
|
|
protocol: TCP
|
|
startupProbe:
|
|
httpGet:
|
|
path: /healthz
|
|
port: 8080
|
|
failureThreshold: 30
|
|
periodSeconds: 5
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /healthz
|
|
port: 8080
|
|
failureThreshold: 3
|
|
periodSeconds: 10
|
|
readinessProbe:
|
|
httpGet:
|
|
path: /healthz
|
|
port: 8080
|
|
failureThreshold: 3
|
|
periodSeconds: 10
|
|
volumeMounts:
|
|
- name: searxng-config
|
|
mountPath: /etc/searxng/settings.yml
|
|
subPath: settings.yml
|
|
volumes:
|
|
- name: searxng-config
|
|
secret:
|
|
secretName: searxng-1723974683-config
|