pipelines
Some checks failed
CI/CD Pipeline / build (push) Failing after 4s

This commit is contained in:
2026-03-06 16:49:59 -07:00
parent 181c6ca84b
commit 84261d4747
6 changed files with 191 additions and 1 deletions

26
kubernetes/ingress.yml Normal file
View File

@@ -0,0 +1,26 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: ai-ha-elixir
namespace: ai-ha-elixir
annotations:
# WebSocket support for LiveView
nginx.ingress.kubernetes.io/proxy-read-timeout: "86400"
nginx.ingress.kubernetes.io/proxy-send-timeout: "86400"
nginx.ingress.kubernetes.io/proxy-http-version: "1.1"
nginx.ingress.kubernetes.io/configuration-snippet: |
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
spec:
ingressClassName: nginx
rules:
- host: ai-ha.alexmickelson.guru
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: ai-ha-elixir
port:
number: 80