diff --git a/.idea/dictionaries/hiond.xml b/.idea/dictionaries/hiond.xml new file mode 100644 index 0000000..9c8e361 --- /dev/null +++ b/.idea/dictionaries/hiond.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/deployment/manifest/configmaps/common-config.yaml b/deployment/manifest/configmaps/common-config.yaml index b929666..3ade1ae 100644 --- a/deployment/manifest/configmaps/common-config.yaml +++ b/deployment/manifest/configmaps/common-config.yaml @@ -6,4 +6,4 @@ metadata: data: JPA_DDL_AUTO: update JPA_SHOW_SQL: "true" - ALLOWED_ORIGINS: "http://localhost*,http://lifesub-web*" \ No newline at end of file + ALLOWED_ORIGINS: "http://localhost:18080,http://localhost:18081,http://20.249.185.127" \ No newline at end of file diff --git a/svc-member.yaml b/svc-member.yaml deleted file mode 100644 index 08db0ca..0000000 --- a/svc-member.yaml +++ /dev/null @@ -1,15 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: member-external -spec: - ports: - - name: tcp-postgresql - port: 5432 - protocol: TCP - targetPort: tcp-postgresql - selector: - app.kubernetes.io/component: primary - app.kubernetes.io/instance: member - sessionAffinity: None - type: LoadBalancer diff --git a/svc-mysub.yaml b/svc-mysub.yaml deleted file mode 100644 index 49f353c..0000000 --- a/svc-mysub.yaml +++ /dev/null @@ -1,15 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: mysub-external -spec: - ports: - - name: tcp-postgresql - port: 5432 - protocol: TCP - targetPort: tcp-postgresql - selector: - app.kubernetes.io/component: primary - app.kubernetes.io/instance: mysub - sessionAffinity: None - type: LoadBalancer diff --git a/svc-recommend.yaml b/svc-recommend.yaml deleted file mode 100644 index 9309106..0000000 --- a/svc-recommend.yaml +++ /dev/null @@ -1,15 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: recommend-external -spec: - ports: - - name: tcp-postgresql - port: 5432 - protocol: TCP - targetPort: tcp-postgresql - selector: - app.kubernetes.io/component: primary - app.kubernetes.io/instance: recommend - sessionAffinity: None - type: LoadBalancer diff --git a/values-member.yaml b/values-member.yaml deleted file mode 100644 index bde707a..0000000 --- a/values-member.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# PostgreSQL 아키텍처 설정 -architecture: standalone -# 글로벌 설정 -global: - postgresql: - auth: - postgresPassword: "Passw0rd" - replicationPassword: "Passw0rd" - database: "member" - username: "admin" - password: "Passw0rd" - storageClass: "managed" - -# Primary 설정 -primary: - persistence: - enabled: true - storageClass: "managed" - size: 10Gi - - resources: - limits: - memory: "1Gi" - cpu: "1" - requests: - memory: "0.5Gi" - cpu: "0.5" - -# 네트워크 설정 -service: - type: ClusterIP - ports: - postgresql: 5432 -# 보안 설정 -securityContext: - enabled: true - fsGroup: 1001 - runAsUser: 1001 diff --git a/values-mysub.yaml b/values-mysub.yaml deleted file mode 100644 index c823237..0000000 --- a/values-mysub.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# PostgreSQL 아키텍처 설정 -architecture: standalone -# 글로벌 설정 -global: - postgresql: - auth: - postgresPassword: "Passw0rd" - replicationPassword: "Passw0rd" - database: "mysub" - username: "admin" - password: "Passw0rd" - storageClass: "managed" - -# Primary 설정 -primary: - persistence: - enabled: true - storageClass: "managed" - size: 10Gi - - resources: - limits: - memory: "1Gi" - cpu: "1" - requests: - memory: "0.5Gi" - cpu: "0.5" - -# 네트워크 설정 -service: - type: ClusterIP - ports: - postgresql: 5432 -# 보안 설정 -securityContext: - enabled: true - fsGroup: 1001 - runAsUser: 1001 diff --git a/values-recommend.yaml b/values-recommend.yaml deleted file mode 100644 index 79c5644..0000000 --- a/values-recommend.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# PostgreSQL 아키텍처 설정 -architecture: standalone -# 글로벌 설정 -global: - postgresql: - auth: - postgresPassword: "Passw0rd" - replicationPassword: "Passw0rd" - database: "recommend" - username: "admin" - password: "Passw0rd" - storageClass: "managed" - -# Primary 설정 -primary: - persistence: - enabled: true - storageClass: "managed" - size: 10Gi - - resources: - limits: - memory: "1Gi" - cpu: "1" - requests: - memory: "0.5Gi" - cpu: "0.5" - -# 네트워크 설정 -service: - type: ClusterIP - ports: - postgresql: 5432 -# 보안 설정 -securityContext: - enabled: true - fsGroup: 1001 - runAsUser: 1001