this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

refactor(actualbudget): switch to new convention

+66 -47
+66
apps/actualbudget.yaml
··· 1 + apiVersion: argoproj.io/v1alpha1 2 + kind: Application 3 + metadata: 4 + finalizers: 5 + - resources-finalizer.argocd.argoproj.io 6 + name: actualbudget 7 + spec: 8 + destination: 9 + name: in-cluster 10 + namespace: actualbudget 11 + project: default 12 + syncPolicy: 13 + automated: 14 + prune: true 15 + selfHeal: true 16 + syncOptions: 17 + - CreateNamespace=true 18 + - ApplyOutOfSyncOnly=true 19 + - ServerSideApply=true 20 + source: 21 + repoURL: https://bjw-s-labs.github.io/helm-charts 22 + chart: app-template 23 + targetRevision: 3.7.3 24 + helm: 25 + valuesObject: 26 + defaultPodOptions: 27 + labels: 28 + "istio.io/dataplane-mode": "ambient" 29 + controllers: 30 + main: 31 + containers: 32 + main: 33 + image: 34 + repository: docker.io/actualbudget/actual-server 35 + tag: 25.6.1-alpine 36 + service: 37 + main: 38 + controller: main 39 + ports: 40 + http: 41 + port: 5006 42 + protocol: HTTP 43 + ingress: 44 + main: 45 + enabled: true 46 + className: nginx 47 + annotations: 48 + cert-manager.io/cluster-issuer: letsencrypt-prod 49 + hosts: 50 + - host: budget.cloudlab.khuedoan.com 51 + paths: 52 + - path: / 53 + pathType: Prefix 54 + service: 55 + identifier: main 56 + port: http 57 + tls: 58 + - hosts: 59 + - budget.cloudlab.khuedoan.com 60 + secretName: actualbudget-tls-certificate 61 + persistence: 62 + data: 63 + accessMode: ReadWriteOnce 64 + size: 1Gi 65 + globalMounts: 66 + - path: /data
-7
apps/actualbudget/Chart.yaml
··· 1 - apiVersion: v2 2 - name: actualbudget 3 - version: 0.0.0 4 - dependencies: 5 - - name: app-template 6 - version: 2.6.0 7 - repository: https://bjw-s-labs.github.io/helm-charts
-40
apps/actualbudget/values.yaml
··· 1 - app-template: 2 - defaultPodOptions: 3 - labels: 4 - "istio.io/dataplane-mode": "ambient" 5 - controllers: 6 - main: 7 - containers: 8 - main: 9 - image: 10 - repository: docker.io/actualbudget/actual-server 11 - tag: 25.6.1-alpine 12 - service: 13 - main: 14 - ports: 15 - http: 16 - port: 5006 17 - protocol: HTTP 18 - ingress: 19 - main: 20 - enabled: true 21 - annotations: 22 - cert-manager.io/cluster-issuer: letsencrypt-prod 23 - hosts: 24 - - host: &host budget.cloudlab.khuedoan.com 25 - paths: 26 - - path: / 27 - pathType: Prefix 28 - service: 29 - name: main 30 - port: http 31 - tls: 32 - - hosts: 33 - - *host 34 - secretName: actualbudget-tls-certificate 35 - persistence: 36 - data: 37 - accessMode: ReadWriteOnce 38 - size: 1Gi 39 - globalMounts: 40 - - path: /data