Skip to content

Commit

Permalink
Added Deployment.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
GautamPatil1 committed Apr 5, 2024
1 parent f4e28a4 commit 1078387
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions deployment.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: rezume
labels:
app: rezume
spec:
replicas: 1
selector:
matchLabels:
app: rezume
template:
metadata:
labels:
app: rezume
spec:
containers:
- name: rezume
image: gautampatil1/rezume:latest
ports:
- containerPort: 80

---
apiVersion: v1
kind: Service
metadata:
name: rezume-service
spec:
selector:
app: rezume
ports:
- protocol: TCP
port: 80
targetPort: 80
nodePort: 32600
type: NodePort

0 comments on commit 1078387

Please sign in to comment.