From ed3de1b98f976bc558e2ae27bb024deb16201e7f Mon Sep 17 00:00:00 2001 From: Jihoon Seo Date: Wed, 18 May 2022 10:09:07 +0900 Subject: [PATCH] [ko] Add examples/application/nginx-with-request.yaml --- .../application/nginx-with-request.yaml | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 content/ko/examples/application/nginx-with-request.yaml diff --git a/content/ko/examples/application/nginx-with-request.yaml b/content/ko/examples/application/nginx-with-request.yaml new file mode 100644 index 0000000000..dd9d002a60 --- /dev/null +++ b/content/ko/examples/application/nginx-with-request.yaml @@ -0,0 +1,23 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: nginx-deployment +spec: + selector: + matchLabels: + app: nginx + replicas: 2 + template: + metadata: + labels: + app: nginx + spec: + containers: + - name: nginx + image: nginx + resources: + limits: + memory: "128Mi" + cpu: "500m" + ports: + - containerPort: 80