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