47 lines
951 B
YAML
47 lines
951 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: Always
|
|
# 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: {}
|