add actual server (budget app)
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
# 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: {}
|
||||
Reference in New Issue
Block a user