0d3da9856a
namespace, deployment, PVC (2Gi local-path), service, Traefik ingress with letsencrypt-prod TLS at trilium.chemavx.xyz, ArgoCD Application.
26 lines
584 B
YAML
26 lines
584 B
YAML
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
|