Skip to content

Commit

Permalink
Update ingress.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
latifyildirim authored May 2, 2024
1 parent 7e37121 commit d777fa9
Showing 1 changed file with 34 additions and 18 deletions.
52 changes: 34 additions & 18 deletions infra/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,37 @@ spec:
- www.kitapkurdu.xyz
secretName: kitapkurdu-tls
rules:
- host: '*.kitapkurdu.xyz'
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: frontend-service
port:
number: 80
- path: /api
pathType: Prefix
backend:
service:
name: backend-service
port:
number: 80

- host: kitapkurdu.xyz
http:
paths:
- path: /
backend:
service:
name: frontend-service
port:
number: 80
pathType: Prefix
- path: /api
backend:
service:
name: backend-service
port:
number: 80
pathType: Prefix
- host: www.kitapkurdu.xyz
http:
paths:
- backend:
service:
name: frontend-service
port:
number: 80
path: /
pathType: Prefix
- backend:
service:
name: backend-service
port:
number: 80
path: /api
pathType: Prefix

0 comments on commit d777fa9

Please sign in to comment.