deployment
Build CuraFlow HMS / build-and-deploy (push) Successful in 43s Details

This commit is contained in:
Deep Koluguri 2026-05-13 00:14:29 -04:00
parent 11a82f81a2
commit c4d751dba0
2 changed files with 16 additions and 24 deletions

16
k8s/apisix-route.yaml Normal file
View File

@ -0,0 +1,16 @@
apiVersion: apisix.apache.org/v2
kind: ApisixRoute
metadata:
name: curaflow-route
namespace: curaflow
spec:
http:
- name: curaflow-rule
match:
hosts:
- curaflow.applaude.net
paths:
- /*
backends:
- serviceName: curaflow-app
servicePort: 80

View File

@ -31,27 +31,3 @@ spec:
ports: ports:
- port: 80 - port: 80
targetPort: 3000 targetPort: 3000
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: curaflow-ingress
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
spec:
ingressClassName: apisix
tls:
- hosts:
- curaflow.applaude.net
secretName: curaflow-tls
rules:
- host: curaflow.applaude.net
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: curaflow-app
port:
number: 80