Skip to content

Commit

Permalink
Create deployment.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
anujdevopslearn authored Mar 9, 2024
1 parent d3dfe00 commit 4bb1ca9
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions deploy/deployment.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: ais-ifm
labels:
product: actimize
spec:
replicas: 1
selector:
matchLabels:
app: ais
tier: web
template:
metadata:
labels:
app: ais
tier: web
spec:
containers:
- name: bootcamp-container
image: jocatalin/kubernetes-bootcamp:v1
ports:
- containerPort: 8080
resources:
limits:
cpu: 1000m
memory: 600Mi
requests:
cpu: 500m
memory: 300Mi
- name: nginx-container
image: nginx
ports:
- containerPort: 80
resources:
limits:
cpu: 400m
memory: 200Mi
requests:
cpu: 200m
memory: 100Mi

0 comments on commit 4bb1ca9

Please sign in to comment.