Files
ai-dev-portal/deploy/portal-route.yaml

27 lines
635 B
YAML

# portal.bokdev.in → Kubero 가 배포한 portal Service.
# Kubero 파이프라인 ai-dev, production phase → ns ai-dev-production.
# Service 이름=portal-kuberoapp, port=80.
apiVersion: gateway.networking.k8s.io/v1
kind: HTTPRoute
metadata:
name: portal-route
namespace: ai-dev-production
spec:
hostnames:
- portal.bokdev.in
parentRefs:
- group: gateway.networking.k8s.io
kind: Gateway
name: bokdev-gateway
namespace: istio-ingress
rules:
- matches:
- path:
type: PathPrefix
value: /
backendRefs:
- group: ""
kind: Service
name: portal-kuberoapp
port: 80