feat: add harmonic-wordpress dev environment on Legion

- Add harmonic-wordpress namespace
- WordPress + MySQL deployment with PVCs and ExternalSecrets
- Ingress for dev.harmonic-framework.com via Traefik + cert-manager
- Argo CD Application watching k8s/harmonic-wordpress/
- Add public Gitea repo credential for git.neuralplatform.ai
This commit is contained in:
Will Anderson
2026-04-04 09:47:41 -05:00
parent fb0284d72a
commit 6a9db2094e
7 changed files with 273 additions and 1 deletions
@@ -0,0 +1,25 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: wordpress
namespace: harmonic-wordpress
annotations:
traefik.ingress.kubernetes.io/router.entrypoints: websecure
cert-manager.io/cluster-issuer: letsencrypt-prod
spec:
ingressClassName: traefik
tls:
- hosts:
- dev.harmonic-framework.com
secretName: wordpress-tls
rules:
- host: dev.harmonic-framework.com
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: wordpress
port:
number: 80