From 35c2ef34d5c03706a4dca0e5901f367fb03db2be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=A0=95=ED=9B=88=20=EB=B3=80?= Date: Thu, 11 Apr 2024 10:49:43 +0900 Subject: [PATCH] =?UTF-8?q?service=20yml=20=ED=86=B5=ED=95=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bussiness1-chl-svc.yml | 14 ------------- bussiness1-core-svc.yml | 14 ------------- bussiness1-mci-svc.yml | 14 ------------- bussiness1-svc.yml | 44 +++++++++++++++++++++++++++++++++++++++++ 4 files changed, 44 insertions(+), 42 deletions(-) delete mode 100644 bussiness1-chl-svc.yml delete mode 100644 bussiness1-core-svc.yml delete mode 100644 bussiness1-mci-svc.yml create mode 100644 bussiness1-svc.yml diff --git a/bussiness1-chl-svc.yml b/bussiness1-chl-svc.yml deleted file mode 100644 index b2e398c..0000000 --- a/bussiness1-chl-svc.yml +++ /dev/null @@ -1,14 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: chl-svc - namespace: bussiness1 -spec: - selector: - app: bussiness1-chl - type: ClusterIP - ports: - - name: tomcat - protocol: TCP - port: 8080 - targetPort: 8077 \ No newline at end of file diff --git a/bussiness1-core-svc.yml b/bussiness1-core-svc.yml deleted file mode 100644 index 72a4b67..0000000 --- a/bussiness1-core-svc.yml +++ /dev/null @@ -1,14 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: core-svc - namespace: bussiness1 -spec: - selector: - app: bussiness1-core - type: ClusterIP - ports: - - name: tomcat - protocol: TCP - port: 8080 - targetPort: 8077 \ No newline at end of file diff --git a/bussiness1-mci-svc.yml b/bussiness1-mci-svc.yml deleted file mode 100644 index ebacaa4..0000000 --- a/bussiness1-mci-svc.yml +++ /dev/null @@ -1,14 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: mci-svc - namespace: bussiness1 -spec: - selector: - app: bussiness1-mci - type: ClusterIP - ports: - - name: tomcat - protocol: TCP - port: 8080 - targetPort: 8077 \ No newline at end of file diff --git a/bussiness1-svc.yml b/bussiness1-svc.yml new file mode 100644 index 0000000..35bee06 --- /dev/null +++ b/bussiness1-svc.yml @@ -0,0 +1,44 @@ +apiVersion: v1 +kind: Service +metadata: + name: chl-svc + namespace: bussiness1 +spec: + selector: + app: bussiness1-chl + type: ClusterIP + ports: + - name: tomcat + protocol: TCP + port: 8080 + targetPort: 8077 +--- +apiVersion: v1 +kind: Service +metadata: + name: mci-svc + namespace: bussiness1 +spec: + selector: + app: bussiness1-mci + type: ClusterIP + ports: + - name: tomcat + protocol: TCP + port: 8080 + targetPort: 8077 +--- +apiVersion: v1 +kind: Service +metadata: + name: core-svc + namespace: bussiness1 +spec: + selector: + app: bussiness1-core + type: ClusterIP + ports: + - name: tomcat + protocol: TCP + port: 8080 + targetPort: 8077 \ No newline at end of file