Skip to content

Commit

Permalink
build: add k8s ingress
Browse files Browse the repository at this point in the history
  • Loading branch information
tyknkd committed May 15, 2024
1 parent 87d9bb6 commit e14184f
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions deployment/templates/ingress.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: newsanalyzer-ingress
spec:
rules:
- host: newsanalyzer.io
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: web-service
port:
number: 8888
- path: /monitoring
pathType: Prefix
backend:
service:
name: grafana-service
port:
number: 3000

0 comments on commit e14184f

Please sign in to comment.