Skip to content

Commit

Permalink
feat(ops): add basic deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
samialdury committed Mar 21, 2024
1 parent 37fced7 commit a6c56c4
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions deployment.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: tsbs
namespace: default
spec:
replicas: 1
selector:
matchLabels:
app: tsbs
template:
metadata:
labels:
app: tsbs
spec:
containers:
- name: tsbs
image: 698591829921.dkr.ecr.eu-central-1.amazonaws.com/tsbs:latest
resources:
limits:
memory: "1Gi"
cpu: "1"

0 comments on commit a6c56c4

Please sign in to comment.