2 Commits

Author SHA1 Message Date
ec39ba59be Update jaeger Endpoint
All checks were successful
Build And Test / build-and-push (push) Successful in 2m9s
2025-09-29 23:23:28 +09:00
cf8466aaf6 modify paylaod
All checks were successful
Build And Test / build-and-push (push) Successful in 1m44s
2025-09-29 00:25:24 +09:00
4 changed files with 8 additions and 2 deletions

View File

@ -12,6 +12,10 @@ python3 manage.py runserver 0.0.0.0:8000
gunicorn auth_prj.wsgi:application --bind 0.0.0.0:8000 --workers 3
```
## 2025-09-29 jaeger Endpoint 변경 ( v0.0.14 )
* 변경전: endpoint="http://jaeger-collector.istio-system:4317",
* 변경후: endpoint="http://jaeger-collector.observability.svc.cluster.local:4317",
## 2025-09-28 RS256변경 적용 ( v0.0.13 )
* Docker Build base image 변경.
* python:3.10-slim-buster > python:3.10-slim-bullseye

View File

@ -33,7 +33,8 @@ if not settings.DEBUG:
)
otlp_exporter = OTLPSpanExporter(
endpoint="http://jaeger-collector.istio-system:4317",
# endpoint="http://jaeger-collector.istio-system:4317",
endpoint="http://jaeger-collector.observability.svc.cluster.local:4317",
insecure=True,
)

View File

@ -27,6 +27,7 @@ class CustomTokenObtainPairSerializer(TokenObtainPairSerializer):
token["name"] = user.name
token["grade"] = user.grade
token["email"] = user.email # 선택적으로 추가 가능
token["sub"] = user.email # 선택적으로 추가 가능
# Kong JWT 플러그인용 issuer 정보 추가
token["iss"] = "msa-user"

View File

@ -1 +1 @@
v0.0.13
v0.0.14