feat: add Trilium Notes deployment

namespace, deployment, PVC (2Gi local-path), service, Traefik ingress
with letsencrypt-prod TLS at trilium.chemavx.xyz, ArgoCD Application.
This commit is contained in:
2026-05-22 09:56:57 +00:00
parent 177d9e0f9a
commit 0d3da9856a
6 changed files with 109 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: trilium
namespace: argocd
spec:
project: default
source:
repoURL: https://git.chemavx.xyz/chemavx/k8s-manifests
targetRevision: HEAD
path: trilium
destination:
server: https://kubernetes.default.svc
namespace: trilium
syncPolicy:
automated:
prune: true
selfHeal: true
syncOptions:
- CreateNamespace=true
+35
View File
@@ -0,0 +1,35 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: trilium
namespace: trilium
spec:
replicas: 1
selector:
matchLabels:
app: trilium
template:
metadata:
labels:
app: trilium
spec:
containers:
- name: trilium
image: zadam/trilium:latest
imagePullPolicy: Always
ports:
- containerPort: 8080
resources:
requests:
cpu: 50m
memory: 128Mi
limits:
cpu: 500m
memory: 512Mi
volumeMounts:
- name: data
mountPath: /home/node/trilium-data
volumes:
- name: data
persistentVolumeClaim:
claimName: trilium-pvc
+25
View File
@@ -0,0 +1,25 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: trilium
namespace: trilium
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
traefik.ingress.kubernetes.io/router.entrypoints: websecure
spec:
ingressClassName: traefik
rules:
- host: trilium.chemavx.xyz
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: trilium
port:
number: 8080
tls:
- hosts:
- trilium.chemavx.xyz
secretName: trilium-tls
+4
View File
@@ -0,0 +1,4 @@
apiVersion: v1
kind: Namespace
metadata:
name: trilium
+12
View File
@@ -0,0 +1,12 @@
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: trilium-pvc
namespace: trilium
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 2Gi
storageClassName: local-path
+13
View File
@@ -0,0 +1,13 @@
apiVersion: v1
kind: Service
metadata:
name: trilium
namespace: trilium
spec:
selector:
app: trilium
ports:
- name: http
port: 8080
targetPort: 8080
type: ClusterIP