Skip to content

Commit

Permalink
Merge pull request #80 from FacundoInza/feat/upload-image-ECR
Browse files Browse the repository at this point in the history
fix: Secrets manager with new enviroment production
  • Loading branch information
FacundoInza authored Oct 2, 2023
2 parents bd0b284 + 6af8759 commit 0be08ee
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
22 changes: 22 additions & 0 deletions eks/deployment.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: deliverit-front-dealer-deployment
labels:
app: deliverit-front-dealer
spec:
replicas: 1
selector:
matchLabels:
app: deliverit-front-dealer
template:
metadata:
labels:
app: deliverit-front-dealer
spec:
containers:
- name: deliverit-front-dealer
image: 913891584254.dkr.ecr.sa-east-1.amazonaws.com/deliverit-front-dealer:latest
imagePullPolicy: Always
ports:
- containerPort: 3000
12 changes: 12 additions & 0 deletions eks/service.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
apiVersion: v1
kind: Service
metadata:
name: deliverit-front-dealer-service
spec:
selector:
app: deliverit-front-dealer
type: ClusterIP
ports:
- protocol: TCP
port: 80
targetPort: 3000

0 comments on commit 0be08ee

Please sign in to comment.