* feat(autobrr): Add autobrr * update port for ci testing * update ports to the same for ci testing * updated values add protocol: HTTP * disabled probes * udpate questions.yaml * re-add ingress * different probes * leave protocol as is * faillback to tcp probe * try curl probe * if you'd read the logs, you'd know * tcp probe * custom probe * shell Co-authored-by: Stavros kois <s.kois@outlook.com>
50 lines
957 B
YAML
50 lines
957 B
YAML
image:
|
|
repository: ghcr.io/autobrr/autobrr
|
|
pullPolicy: IfNotPresent
|
|
tag: v1.1.0@sha256:6d3a723c7160b837a132acf5e52582bf28efa88b72298227d106bb8728daa553
|
|
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
protocol: HTTP
|
|
port: 7474
|
|
targetPort: 7474
|
|
|
|
probes:
|
|
liveness:
|
|
enabled: true
|
|
custom: true
|
|
spec:
|
|
exec:
|
|
command:
|
|
- /bin/sh
|
|
- -c
|
|
- curl --fail localhost:7474/
|
|
failureThreshold: 5
|
|
initialDelaySeconds: 60
|
|
periodSeconds: 10
|
|
successThreshold: 1
|
|
timeoutSeconds: 10
|
|
readiness:
|
|
enabled: true
|
|
custom: true
|
|
spec:
|
|
exec:
|
|
command:
|
|
- /bin/sh
|
|
- -c
|
|
- curl --fail localhost:7474/
|
|
failureThreshold: 5
|
|
initialDelaySeconds: 60
|
|
periodSeconds: 10
|
|
successThreshold: 1
|
|
timeoutSeconds: 10
|
|
startup:
|
|
enabled: false
|
|
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
mountPath: "/config"
|