From 2125762e29ff3405edfb48189923c928fc4b2d25 Mon Sep 17 00:00:00 2001 From: Abhilash Dubey <124042593+AbhilashKD@users.noreply.github.com> Date: Fri, 14 Feb 2025 13:13:40 +0530 Subject: [PATCH] Create interface.yaml --- manifest/interface.yaml | 43 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 manifest/interface.yaml diff --git a/manifest/interface.yaml b/manifest/interface.yaml new file mode 100644 index 0000000..0bb1866 --- /dev/null +++ b/manifest/interface.yaml @@ -0,0 +1,43 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + creationTimestamp: null + labels: + name: interface +spec: + replicas: 1 + selector: + matchLabels: + app: interface + strategy: {} + template: + metadata: + creationTimestamp: null + labels: + app: interface + spec: + containers: + - image: ${ECR_REPOSITORY}:${IMAGE_TAG} + imagePullPolicy: "Always" + name: interface-service + ports: + - containerPort: 5004 + envFrom: + - configMapRef: + name: interface-service-config + resources: {} + restartPolicy: Always + volumes: null +status: {} +--- +apiVersion: v1 +kind: Service +metadata: + name: interface +spec: + type: ClusterIP + ports: + - port: 5004 + protocol: TCP + selector: + app: interface