46 lines
1.1 KiB
YAML
46 lines
1.1 KiB
YAML
|
image:
|
||
|
pullPolicy: IfNotPresent
|
||
|
repository: searxng/searxng
|
||
|
tag: latest@sha256:fda9b236a09325c6ad533a31231a8abecb3b398f8bbf92e0ed5eea69d6c207e8
|
||
|
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
|