mirror of
https://github.com/cna-bootcamp/lifesub.git
synced 2026-06-13 04:59:10 +00:00
add manifest
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
# lifesub/deployment/manifest/configmaps/common-config.yaml
|
||||
apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
name: common-config
|
||||
data:
|
||||
JPA_DDL_AUTO: update
|
||||
JPA_SHOW_SQL: "true"
|
||||
ALLOWED_ORIGINS: "http://lifesub-web"
|
||||
@@ -0,0 +1,10 @@
|
||||
# lifesub/deployment/manifest/configmaps/member-config.yaml
|
||||
apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
name: member-config
|
||||
data:
|
||||
SERVER_PORT: "8081"
|
||||
POSTGRES_HOST: "member-postgresql"
|
||||
POSTGRES_PORT: "5432"
|
||||
POSTGRES_DB: "member"
|
||||
@@ -0,0 +1,13 @@
|
||||
|
||||
# lifesub/deployment/manifest/configmaps/mysub-config.yaml
|
||||
apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
name: mysub-config
|
||||
data:
|
||||
SERVER_PORT: "8082"
|
||||
POSTGRES_HOST: "mysub-postgresql"
|
||||
POSTGRES_PORT: "5432"
|
||||
POSTGRES_DB: "mysub"
|
||||
FEE_LEVEL_COLLECTOR: "50000"
|
||||
FEE_LEVEL_ADDICT: "100000"
|
||||
@@ -0,0 +1,10 @@
|
||||
# lifesub/deployment/manifest/configmaps/recommend-config.yaml
|
||||
apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
name: recommend-config
|
||||
data:
|
||||
SERVER_PORT: "8083"
|
||||
POSTGRES_HOST: "recommend-postgresql"
|
||||
POSTGRES_PORT: "5432"
|
||||
POSTGRES_DB: "recommend"
|
||||
Reference in New Issue
Block a user