new updates
Build Curio HMS / build-and-deploy (push) Successful in 47s Details

This commit is contained in:
Deep Koluguri 2026-05-14 09:06:09 -04:00
parent 18649c50a7
commit 5a89ccb0a4
4 changed files with 31 additions and 20 deletions

BIN
curio_hero_ui.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 543 KiB

View File

@ -50,7 +50,7 @@
</div>
<div class="hero-visual">
<div class="image-wrapper">
<img src="Curio_hero_ui_1778636262274.png" alt="Curio Dashboard Mockup">
<img src="curio_hero_ui.png" alt="Curio Dashboard Mockup">
</div>
</div>
</div>

View File

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

30
k8s/ingress.yaml Normal file
View File

@ -0,0 +1,30 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: curio-ingress
namespace: curio
annotations:
k8s.apisix.apache.org/enable-websocket: "true"
spec:
ingressClassName: apisix
rules:
- host: curio.applaude.net
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: curio-app
port:
number: 80
- host: curaflow.applaude.net
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: curio-app
port:
number: 80