46 lines
1.1 KiB
YAML
46 lines
1.1 KiB
YAML
image:
|
|
pullPolicy: IfNotPresent
|
|
repository: searxng/searxng
|
|
tag: latest@sha256:dd56422c991c780d4ca69fc509be5a531a0999b2f1805aa049a126c93e2f816a
|
|
workload:
|
|
main:
|
|
podSpec:
|
|
containers:
|
|
main:
|
|
env:
|
|
BIND_ADDRESS: '{{ printf "0.0.0.0:%v" .Values.service.main.ports.main.port }}'
|
|
INSTANCE_NAME: SearXng
|
|
BASE_URL: ""
|
|
probes:
|
|
liveness:
|
|
path: /healthz
|
|
port: "{{ .Values.service.main.ports.main.port }}"
|
|
readiness:
|
|
path: /healthz
|
|
port: "{{ .Values.service.main.ports.main.port }}"
|
|
startup:
|
|
type: tcp
|
|
port: "{{ .Values.service.main.ports.main.port }}"
|
|
securityContext:
|
|
container:
|
|
runAsGroup: 0
|
|
runAsUser: 0
|
|
capabilities:
|
|
disableS6Caps: true
|
|
add:
|
|
- SETUID
|
|
- SETGID
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 8080
|
|
protocol: http
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
mountPath: /etc/searxng
|
|
portal:
|
|
open:
|
|
enabled: true
|