feat : initial commit

This commit is contained in:
2025-06-20 05:42:24 +00:00
commit 409d7abdc6
245 changed files with 17069 additions and 0 deletions
@@ -0,0 +1,12 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: api-gateway-config
namespace: team1tier-healthsync-ns
data:
SERVER_PORT: "8080"
USER_SERVICE_URL: "http://user-service:80"
HEALTH_SERVICE_URL: "http://health-service:80"
INTELLIGENCE_SERVICE_URL: "http://intelligence-service:80"
GOAL_SERVICE_URL: "http://goal-service:80"
MOTIVATOR_SERVICE_URL: "http://motivator-service:80"
@@ -0,0 +1,13 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: common-config
namespace: team1tier-healthsync-ns
data:
ALLOWED_ORIGINS: "http://20.249.193.105"
POSTGRES_HOST: "psql-digitalgarage-01.postgres.database.azure.com"
POSTGRES_PORT: "5432"
REDIS_HOST: "redis-digitalgarage-01.redis.cache.windows.net"
REDIS_PORT: "6380"
REDIS_USE_SSL: "true"
SERVICE_BUS_NAMESPACE: "sb-healthsync.servicebus.windows.net"
@@ -0,0 +1,8 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: goal-service-config
namespace: team1tier-healthsync-ns
data:
SERVER_PORT: "8084"
POSTGRES_DB: "healthsync_goal"
@@ -0,0 +1,8 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: health-service-config
namespace: team1tier-healthsync-ns
data:
SERVER_PORT: "8082"
POSTGRES_DB: "healthsync_health"
@@ -0,0 +1,8 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: intelligence-service-config
namespace: team1tier-healthsync-ns
data:
SERVER_PORT: "8083"
POSTGRES_DB: "healthsync_intelligence"
@@ -0,0 +1,8 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: motivator-service-config
namespace: team1tier-healthsync-ns
data:
SERVER_PORT: "8085"
POSTGRES_DB: "healthsync_motivator"
@@ -0,0 +1,13 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: user-service-config
namespace: team1tier-healthsync-ns
data:
SERVER_PORT: "8081"
POSTGRES_DB: "healthsync_user"
# Google OAuth 설정
GOOGLE_OAUTH_TOKEN_VERIFY_URL: "https://oauth2.googleapis.com/tokeninfo"
GOOGLE_OAUTH_USERINFO_URL: "https://www.googleapis.com/oauth2/v2/userinfo"
GOOGLE_OAUTH_ISSUER: "https://accounts.google.com"