87 lines
1.4 KiB
YAML
87 lines
1.4 KiB
YAML
# Default values for kavita.
|
|
# This is a YAML-formatted file.
|
|
|
|
# Namespace to use.
|
|
namespace: kavita
|
|
|
|
# Replica's to Deploy.
|
|
replicaCount: 1
|
|
|
|
# Image to use.
|
|
www:
|
|
image: kizaing/kavita
|
|
pullPolicy: Always
|
|
tag: "v0.7.3"
|
|
|
|
# Overrides.
|
|
imagePullSecrets: []
|
|
nameOverride: ""
|
|
fullnameOverride: ""
|
|
|
|
kavita:
|
|
env:
|
|
TZ: UTC
|
|
|
|
ingress:
|
|
enabled: true
|
|
className: "nginx"
|
|
tls:
|
|
- secretName: kavita-domain-tls
|
|
hosts:
|
|
- kavita.example.com
|
|
hosts:
|
|
- host: kavita.example.com
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
|
|
persistence:
|
|
enabled: true
|
|
existingClaim:
|
|
size: 1Gi
|
|
accessModes:
|
|
- ReadWriteOnce
|
|
labels: {}
|
|
annotations: {}
|
|
storageClass:
|
|
subPath:
|
|
|
|
extraVolumes:
|
|
# - name: nfs
|
|
# nfs:
|
|
# server: "10.0.0.1"
|
|
# path: "/nextcloud_data"
|
|
# readOnly: false
|
|
extraVolumeMounts:
|
|
# - name: nfs
|
|
# mountPath: "/legacy_data"
|
|
|
|
livenessProbe:
|
|
enabled: true
|
|
tcpSocket:
|
|
port: http
|
|
initialDelaySeconds: 200
|
|
timeoutSeconds: 1
|
|
periodSeconds: 10
|
|
successThreshold: 1
|
|
failureThreshold: 10
|
|
|
|
readinessProbe:
|
|
enabled: true
|
|
tcpSocket:
|
|
port: http
|
|
initialDelaySeconds: 5
|
|
timeoutSeconds: 1
|
|
periodSeconds: 10
|
|
successThreshold: 1
|
|
failureThreshold: 3
|
|
|
|
startupProbe:
|
|
enabled: false
|
|
tcpSocket:
|
|
port: http
|
|
initialDelaySeconds: 60
|
|
timeoutSeconds: 1
|
|
periodSeconds: 10
|
|
successThreshold: 1
|
|
failureThreshold: 10 |