Add ingress(es)

This commit is contained in:
Santiago Lo Coco 2023-11-15 14:30:34 -03:00
parent 9de6690b24
commit a72bfd523c
6 changed files with 65 additions and 3 deletions

View File

@ -10,7 +10,7 @@ spec:
selector:
app: api
tier: backend
type: LoadBalancer
type: ClusterIP
---
apiVersion: apps/v1
kind: Deployment

19
api-ingress.yaml Normal file
View File

@ -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

View File

@ -11,7 +11,7 @@ spec:
selector:
app: client
tier: frontend
type: LoadBalancer
type: ClusterIP
---
apiVersion: apps/v1
kind: Deployment

15
client-ingress.yaml Normal file
View File

@ -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

View File

@ -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",

27
ingress.yaml Normal file
View File

@ -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