Files
turingpi/actual_values.yaml
T
2024-09-10 18:29:25 +02:00

47 lines
957 B
YAML

# Default values for my-actual-server.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
replicaCount: 1
image:
repository: docker.io/actualbudget/actual-server
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: "latest"
service:
type: ClusterIP
port: 5006
ingress:
enabled: false
className: ""
annotations:
cert-manager.io/cluster-issuer: letsencrypt-production
kubernetes.io/ingress.class: traefik
hosts:
- host: actual.gilgamezh.me
paths:
- path: /
pathType: ImplementationSpecific
tls:
- hosts:
- actual.gilgamezh.me
secretName: actual-gilgamezh-me
volumes:
- name: "actual-data"
persistentVolumeClaim:
claimName: "actual-data" # PersistentVolumeClaim created earlier
volumeMounts:
- name: "actual-data"
mountPath: "/data"
nodeSelector: {}
tolerations: []
affinity: {}