This commit is contained in:
Michael Thomson
2023-12-22 18:28:46 -05:00
parent a3afe94aa7
commit e737339d09
7 changed files with 113 additions and 0 deletions

30
actual/deployment.yaml Normal file
View File

@@ -0,0 +1,30 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: actual
namespace: actual
spec:
selector:
matchLabels:
app: actual
template:
metadata:
labels:
app: actual
spec:
containers:
- name: actual
image: docker.io/actualbudget/actual-server:latest
ports:
- containerPort: 5006
name: http
protocol: TCP
volumeMounts:
- mountPath: /data
name: data
volumes:
- name: data
persistentVolumeClaim:
claimName: actual-data