part2 is done (with volumes and a different index for each service)
This commit is contained in:
38
p2/confs/ingress.yaml
Normal file
38
p2/confs/ingress.yaml
Normal file
@ -0,0 +1,38 @@
|
||||
apiVersion: networking.k8s.io/v1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: minimal-ingress
|
||||
annotations:
|
||||
nginx.ingress.kubernetes.io/rewrite-target: /
|
||||
spec:
|
||||
ingressClassName: nginx # Ensure this matches your Ingress class
|
||||
rules:
|
||||
- host: "app1.com"
|
||||
http:
|
||||
paths: # Ensure correct indentation under "http"
|
||||
- path: "/"
|
||||
pathType: Prefix
|
||||
backend:
|
||||
service:
|
||||
name: app1-service
|
||||
port:
|
||||
number: 80
|
||||
- host: "app2.com"
|
||||
http:
|
||||
paths: # Ensure correct indentation under "http"
|
||||
- path: "/"
|
||||
pathType: Prefix
|
||||
backend:
|
||||
service:
|
||||
name: app2-service
|
||||
port:
|
||||
number: 80
|
||||
- http:
|
||||
paths: # Ensure correct indentation under "http"
|
||||
- path: "/"
|
||||
pathType: Prefix
|
||||
backend:
|
||||
service:
|
||||
name: app3-service
|
||||
port:
|
||||
number: 80
|
Reference in New Issue
Block a user