Skip to content

Commit

Permalink
fix: Secrets manager with new enviroment production
Browse files Browse the repository at this point in the history
  • Loading branch information
FacundoInza committed Oct 2, 2023
1 parent 6c2c59f commit 6af8759
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 6af8759

Please sign in to comment.