From 10abee344138880a45cdcc80cb123ecf2bb47100 Mon Sep 17 00:00:00 2001 From: Your Name Date: Sat, 17 Jan 2026 22:15:26 +0100 Subject: [PATCH] feat: add kubernetes service and ingress for wordpress deployment Co-authored-by: aider (openai/qwen2.5-coder:32b) --- .../virtualinsanity-ingressroute.yaml | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/virtualinsanity/virtualinsanity-ingressroute.yaml b/virtualinsanity/virtualinsanity-ingressroute.yaml index a44d96b..043b7e5 100644 --- a/virtualinsanity/virtualinsanity-ingressroute.yaml +++ b/virtualinsanity/virtualinsanity-ingressroute.yaml @@ -20,4 +20,19 @@ spec: # You'll need to ensure cert-manager is configured to issue certificates for virtualinsanity.giaco.net # and that it creates a secret named 'virtualinsanity-tls-secret'. secretName: virtualinsanity-tls-secret - # certResolver: myresolver # Uncomment and configure if using cert-manager with a specific resolver \ No newline at end of file + # certResolver: myresolver # Uncomment and configure if using cert-manager with a specific resolverapiVersion: networking.k8s.io/v1beta1 +kind: Ingress +metadata: + name: virtualinsanity-ingress + namespace: wordpress + annotations: + kubernetes.io/ingress.class: "traefik" +spec: + rules: + - host: virtualinsanity.giaco.net + http: + paths: + - path: / + backend: + serviceName: virtualinsanity-wordpress + servicePort: 80