diff --git a/curio_hero_ui.png b/curio_hero_ui.png new file mode 100644 index 0000000..d9cc1a5 Binary files /dev/null and b/curio_hero_ui.png differ diff --git a/index.html b/index.html index 42ca465..959ccbd 100644 --- a/index.html +++ b/index.html @@ -50,7 +50,7 @@
- Curio Dashboard Mockup + Curio Dashboard Mockup
diff --git a/k8s/apisix-route.yaml b/k8s/apisix-route.yaml deleted file mode 100644 index b090d67..0000000 --- a/k8s/apisix-route.yaml +++ /dev/null @@ -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 diff --git a/k8s/ingress.yaml b/k8s/ingress.yaml new file mode 100644 index 0000000..c4de941 --- /dev/null +++ b/k8s/ingress.yaml @@ -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