Skip to content

Commit

Permalink
Create interface.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
AbhilashKD authored Feb 14, 2025
1 parent 887a19b commit 2125762
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions manifest/interface.yaml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 2125762

Please sign in to comment.