deployed 0.1

This commit is contained in:
2026-03-04 00:56:08 -04:00
parent bf7af2b426
commit 185fa42caa
14 changed files with 371 additions and 27 deletions

38
deploy/ingress.yaml Normal file
View File

@@ -0,0 +1,38 @@
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: ai-ingress
annotations:
cert-manager.io/cluster-issuer: "letsencrypt-prod"
spec:
ingressClassName: nginx
tls:
- hosts:
- dexorder.ai
secretName: dexorder-ai-tls
rules:
- host: dexorder.ai
http:
paths:
- path: /charting_library
pathType: Prefix
backend:
service:
name: ai-web
port:
number: 5173
- path: /cryptochimp
pathType: Prefix
backend:
service:
name: ai-web
port:
number: 5173
- path: /ws
pathType: Prefix
backend:
service:
name: ai-backend
port:
number: 8000