63 lines
945 B
YAML
63 lines
945 B
YAML
# Configuration is managed in k8s/argo-apps/rustical.yaml
|
|
replicaCount: 1
|
|
|
|
image:
|
|
repository: ghcr.io/lennart-k/rustical
|
|
pullpolicy: Always
|
|
tag: ""
|
|
|
|
imagePullSecrets: []
|
|
podAnnotations: {}
|
|
podSecurityContext: {}
|
|
securityContext: {}
|
|
|
|
service:
|
|
type: ClusterIP
|
|
port: 4000
|
|
targetPort: 4000
|
|
|
|
ingress:
|
|
enabled: false
|
|
|
|
persistence:
|
|
enabled: true
|
|
storageClass: "truenas-nfs-csi"
|
|
accessMode: ReadWriteMany
|
|
size: 50Gi
|
|
existingClaim: ""
|
|
|
|
autoscaling:
|
|
enabled: false
|
|
|
|
resources: {}
|
|
|
|
livenessProbe:
|
|
tcpSocket:
|
|
port: 4000
|
|
initialDelaySeconds: 30
|
|
timeoutSeconds: 15
|
|
successThreshold: 1
|
|
failureThreshold: 3
|
|
periodSeconds: 10
|
|
|
|
readinessProbe:
|
|
tcpSocket:
|
|
port: 4000
|
|
initialDelaySeconds: 15
|
|
timeoutSeconds: 2
|
|
successThreshold: 1
|
|
failureThreshold: 3
|
|
periodSeconds: 10
|
|
|
|
nodeSelector: {}
|
|
tolerations: []
|
|
affinity: {}
|
|
|
|
env: {}
|
|
|
|
secret:
|
|
enabled: true
|
|
existingSecretName: "rustical"
|
|
|
|
debug:
|
|
enabled: false
|