Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft: Add budget app #128

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions apps/ActualBudget.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
apiVersion: helm.toolkit.fluxcd.io/v2beta1
kind: HelmRelease
metadata:
name: actual-budget
namespace: default
spec:
interval: 5m
chart:
spec:
chart: actual
version: 1.7.0
sourceRef:
kind: HelmRepository
name: beluga-cloud
namespace: kube-system
interval: 5m
values:
image:
tag: latest
pullPolicy: Always
persistence:
data:
enabled: true
existingClaim: yasr-volume
subPath: configs/actualbudget
ingress:
enabled: true
hostname: money.${CLUSTER_DOMAIN_NAME}
ingressClassName: nginx
tls: true
# secretName: internal-ingress-cert
annotations:
forecastle.stakater.com/appName: "ActualBudget"
forecastle.stakater.com/group: "Finance"
forecastle.stakater.com/expose: "true"
forecastle.stakater.com/icon: ""
4 changes: 2 additions & 2 deletions apps/Skooner.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
name: skooner
namespace: default
spec:
interval: 5m
interval: 10m
path: ./apps/skooner/
prune: true
sourceRef:
Expand All @@ -20,4 +20,4 @@ spec:
postBuild:
substituteFrom:
- kind: Secret
name: secrets
name: secrets
3 changes: 1 addition & 2 deletions clusters/gandazgul/apps/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ kind: Kustomization
resources:
- ./secrets/
- ./RsyncCronJobs.yaml
- ../../../apps/ActualBudget.yaml
- ../../../apps/Bitwarden.yaml
- ../../../apps/Forecastle.yaml
- ../../../apps/HomeAssistant.yaml
Expand All @@ -12,8 +13,6 @@ resources:
- ../../../apps/Photoprism.yaml
- ../../../apps/Resilio.yaml
- ../../../apps/SFTPGo.yaml
- ../../../apps/Sharry.yaml
- ../../../apps/WeaveGitopsDashboard.yaml
- ../../../apps/ZWaveJS.yaml
- ../../../apps/Mealie.yaml
- ../../../apps/Skooner.yaml
Expand Down
8 changes: 8 additions & 0 deletions infrastructure/kube-system/repos/HelmBelugaCloud.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
apiVersion: source.toolkit.fluxcd.io/v1beta1
kind: HelmRepository
metadata:
name: beluga-cloud
namespace: kube-system
spec:
interval: 1h0m0s
url: https://beluga-cloud.github.io/charts/
Loading