Finish CI

This commit is contained in:
2025-09-27 16:29:26 +00:00
parent 51606fc959
commit 57ad064461
3 changed files with 61 additions and 25 deletions

20
.k8s/ingress.yaml Normal file
View File

@@ -0,0 +1,20 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: searchbox-mcp-ingress
namespace: apps
annotations:
nginx.ingress.kubernetes.io/rewrite-target: /
spec:
ingressClassName: nginx
rules:
- host: searchbox.app.ia-innovacion.work
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: searchbox-mcp-service
port:
number: 80

15
.k8s/service.yaml Normal file
View File

@@ -0,0 +1,15 @@
apiVersion: v1
kind: Service
metadata:
name: searchbox-mcp-service
namespace: apps
labels:
app: searchbox-mcp
spec:
selector:
app: searchbox-mcp
type: ClusterIP
ports:
- port: 80
targetPort: 8000
protocol: TCP