feat(k8s/blog): add static blog served via git-sync + nginx

This commit is contained in:
2026-05-11 22:21:36 +03:00
parent 85b5328dd1
commit c7060d543b
8 changed files with 269 additions and 5 deletions
+23
View File
@@ -0,0 +1,23 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: blog
namespace: blog
annotations:
cert-manager.io/cluster-issuer: letsencrypt
spec:
tls:
- hosts:
- ${BLOG_HOST}
secretName: blog-tls
rules:
- host: ${BLOG_HOST}
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: blog
port:
number: 8080