mirror of
https://github.com/khuedoan/homelab.git
synced 2024-12-22 21:34:48 +07:00
39 lines
831 B
YAML
39 lines
831 B
YAML
app-template:
|
|
controllers:
|
|
main:
|
|
containers:
|
|
main:
|
|
image:
|
|
repository: docker.io/actualbudget/actual-server
|
|
tag: 24.12.0-alpine
|
|
service:
|
|
main:
|
|
ports:
|
|
http:
|
|
port: 5006
|
|
protocol: HTTP
|
|
ingress:
|
|
main:
|
|
enabled: true
|
|
className: nginx
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: letsencrypt-prod
|
|
hosts:
|
|
- host: &host budget.khuedoan.com
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
service:
|
|
name: main
|
|
port: http
|
|
tls:
|
|
- hosts:
|
|
- *host
|
|
secretName: actualbudget-tls-certificate
|
|
persistence:
|
|
data:
|
|
accessMode: ReadWriteOnce
|
|
size: 1Gi
|
|
globalMounts:
|
|
- path: /data
|