From 47654c6a6394b35e996b070b8f3d527ae80fcb5e Mon Sep 17 00:00:00 2001 From: Brendan Burns Date: Sat, 19 Aug 2017 21:33:27 -0700 Subject: [PATCH] Create 5-4-kaurd-pod-reslim.yaml --- 5-4-kaurd-pod-reslim.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 5-4-kaurd-pod-reslim.yaml diff --git a/5-4-kaurd-pod-reslim.yaml b/5-4-kaurd-pod-reslim.yaml new file mode 100644 index 0000000..e46e89e --- /dev/null +++ b/5-4-kaurd-pod-reslim.yaml @@ -0,0 +1,19 @@ +apiVersion: v1 +kind: Pod +metadata: + name: kuard +spec: + containers: + - image: gcr.io/kuar-demo/kuard-amd64:1 + name: kuard + resources: + requests: + cpu: "500m" + memory: "128Mi" + limits: + cpu: "1000m" + memory: "256Mi" + ports: + - containerPort: 8080 + name: http + protocol: TCP