From a72bfd523c6c13e679ebdfe9183cb8b1b8d397c7 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Wed, 15 Nov 2023 14:30:34 -0300 Subject: [PATCH] Add ingress(es) --- api-deployment.yaml | 2 +- api-ingress.yaml | 19 +++++++++++++++++++ client-deployment.yaml | 2 +- client-ingress.yaml | 15 +++++++++++++++ data/sample-client-users/src/Api.ts | 3 ++- ingress.yaml | 27 +++++++++++++++++++++++++++ 6 files changed, 65 insertions(+), 3 deletions(-) create mode 100644 api-ingress.yaml create mode 100644 client-ingress.yaml create mode 100644 ingress.yaml diff --git a/api-deployment.yaml b/api-deployment.yaml index 56aa890..4f16b23 100644 --- a/api-deployment.yaml +++ b/api-deployment.yaml @@ -10,7 +10,7 @@ spec: selector: app: api tier: backend - type: LoadBalancer + type: ClusterIP --- apiVersion: apps/v1 kind: Deployment diff --git a/api-ingress.yaml b/api-ingress.yaml new file mode 100644 index 0000000..2f9d506 --- /dev/null +++ b/api-ingress.yaml @@ -0,0 +1,19 @@ +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: minikube-ingress-2 + annotations: + nginx.ingress.kubernetes.io/ssl-redirect: "false" + nginx.ingress.kubernetes.io/use-regex: "true" + nginx.ingress.kubernetes.io/rewrite-target: /$2 +spec: + rules: + - http: + paths: + - path: /api(/|$)(.*) + pathType: ImplementationSpecific + backend: + service: + name: api + port: + number: 5000 \ No newline at end of file diff --git a/client-deployment.yaml b/client-deployment.yaml index f33c971..a44ee34 100644 --- a/client-deployment.yaml +++ b/client-deployment.yaml @@ -11,7 +11,7 @@ spec: selector: app: client tier: frontend - type: LoadBalancer + type: ClusterIP --- apiVersion: apps/v1 kind: Deployment diff --git a/client-ingress.yaml b/client-ingress.yaml new file mode 100644 index 0000000..5788e6c --- /dev/null +++ b/client-ingress.yaml @@ -0,0 +1,15 @@ +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: minikube-ingress +spec: + rules: + - http: + paths: + - path: / + pathType: Prefix + backend: + service: + name: client + port: + number: 8080 \ No newline at end of file diff --git a/data/sample-client-users/src/Api.ts b/data/sample-client-users/src/Api.ts index 3da7d2f..7938628 100644 --- a/data/sample-client-users/src/Api.ts +++ b/data/sample-client-users/src/Api.ts @@ -2,7 +2,8 @@ import { Axios, AxiosError } from "axios"; import { Credentials, Token, User, Zone } from "./Types"; const instance = new Axios({ - baseURL: "http://127.0.0.1:5000/", + // baseURL: "http://api:5000/", + baseURL: "/api/", headers: { accept: "application/json", "Content-Type": "application/json", diff --git a/ingress.yaml b/ingress.yaml new file mode 100644 index 0000000..55f26b0 --- /dev/null +++ b/ingress.yaml @@ -0,0 +1,27 @@ +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: minikube-ingress + annotations: + nginx.ingress.kubernetes.io/ssl-redirect: "false" + nginx.ingress.kubernetes.io/use-regex: "true" + nginx.ingress.kubernetes.io/rewrite-target: /$2 +spec: + rules: + # - host: kube.slc.ar + - http: + paths: + - path: /()(.*) + pathType: ImplementationSpecific + backend: + service: + name: client + port: + number: 8080 + - path: /api(/|$)(.*) + pathType: ImplementationSpecific + backend: + service: + name: api + port: + number: 5000 \ No newline at end of file