포털 사이트 링크에 SSO 자동로그인 적용 (Coder/Gitea OIDC 시작 URL + 뱃지)

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
0310700
2026-06-22 17:53:07 +09:00
parent 9eb3fd1b4c
commit 792b9b9c72
6 changed files with 59 additions and 4 deletions

26
deploy/portal-route.yaml Normal file
View File

@@ -0,0 +1,26 @@
# 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