Add Memos journaling app at journal.neuralplatform.ai

This commit is contained in:
Will Anderson
2026-04-08 15:46:02 -05:00
parent 54b2abf767
commit 78c1c9750f
4 changed files with 114 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: memos
namespace: memos
annotations:
traefik.ingress.kubernetes.io/router.entrypoints: websecure
cert-manager.io/cluster-issuer: letsencrypt-prod
spec:
ingressClassName: traefik
tls:
- hosts:
- journal.neuralplatform.ai
secretName: memos-tls
rules:
- host: journal.neuralplatform.ai
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: memos
port:
number: 5230