mirror of
https://github.com/cna-bootcamp/phonebill.git
synced 2025-12-05 23:56:23 +00:00
- 데이터베이스 연결 정보 업데이트 (LoadBalancer External IP 적용) - Redis 캐시 설정 최적화 - API Gateway CORS 설정 개선 - 백엔드 서비스 보안 설정 강화 - 데이터베이스 테스트 연결 스크립트 추가 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
22 lines
496 B
YAML
22 lines
496 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: db-connection-test
|
|
namespace: phonebill-dg0500
|
|
spec:
|
|
containers:
|
|
- name: postgres-client
|
|
image: postgres:15
|
|
command: ["sleep", "3600"]
|
|
env:
|
|
- name: DB_HOST
|
|
value: "bill-inquiry-postgres-dev-postgresql"
|
|
- name: DB_NAME
|
|
value: "bill_inquiry_db"
|
|
- name: DB_USERNAME
|
|
value: "bill_inquiry_user"
|
|
- name: DB_PASSWORD
|
|
value: "BillUser2025!"
|
|
- name: DB_PORT
|
|
value: "5432"
|
|
restartPolicy: Never |