diff --git a/deploy/deployment.yaml b/deploy/deployment.yaml new file mode 100644 index 0000000..6422017 --- /dev/null +++ b/deploy/deployment.yaml @@ -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