new updates
Build Curio HMS / build-and-deploy (push) Successful in 47s
Details
Build Curio HMS / build-and-deploy (push) Successful in 47s
Details
This commit is contained in:
parent
18649c50a7
commit
5a89ccb0a4
Binary file not shown.
|
After Width: | Height: | Size: 543 KiB |
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
@ -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
|
||||
Loading…
Reference in New Issue