Skip to content

Commit

Permalink
Merge pull request #68 from alex-j-butler/budget
Browse files Browse the repository at this point in the history
Add Actual budget application.
  • Loading branch information
alex-j-butler authored Jul 5, 2024
2 parents 042ea82 + 06674d0 commit 3f59c5c
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 55 deletions.
30 changes: 30 additions & 0 deletions argocd/budget/actual-deployment.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
apiVersion: apps/v1
kind: Deployment
metadata:
namespace: budget
name: actual
spec:
selector:
matchLabels:
app: actual
replicas: 1
strategy:
type: Recreate
template:
metadata:
labels:
app: actual
spec:
containers:
- name: actual
image: actualbudget/actual-server:24.7.0
ports:
- containerPort: 5006
protocol: TCP
volumeMounts:
- mountPath: /data
name: actual-pvc
volumes:
- name: actual-pvc
persistentVolumeClaim:
claimName: actual-pvc
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: firefly-pvc
name: actual-pvc
namespace: budget
spec:
storageClassName: "storage-synology-iscsi"
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi
storage: 5Gi
49 changes: 0 additions & 49 deletions argocd/budget/firefly-deployment.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion argocd/budget/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ spec:
service:
name: budget-svc
port:
number: 8080
number: 5006
6 changes: 3 additions & 3 deletions argocd/budget/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ spec:
type: LoadBalancer
ports:
- name: http
port: 8080
targetPort: 8080
protocol: TCP
port: 5006
targetPort: 5006
protocol: TCP

0 comments on commit 3f59c5c

Please sign in to comment.