mirror of
https://github.com/michaelthomson0797/fleet-infra.git
synced 2026-02-04 13:09:53 +00:00
32 lines
616 B
YAML
32 lines
616 B
YAML
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:edge
|
|
imagePullPolicy: Always
|
|
ports:
|
|
- containerPort: 5006
|
|
name: http
|
|
protocol: TCP
|
|
volumeMounts:
|
|
- mountPath: /data
|
|
name: data
|
|
volumes:
|
|
- name: data
|
|
persistentVolumeClaim:
|
|
claimName: actual-data
|
|
|
|
|