From 4aa1936dd7abdaec2b2b0a7b98e14d683b4ce5a4 Mon Sep 17 00:00:00 2001 From: Sabbir Ahmed Shameem <145862004+SAShameem@users.noreply.github.com> Date: Tue, 7 May 2024 22:57:53 +0600 Subject: [PATCH] Create nginx-with-request.yaml --- .../application/nginx-with-request.yaml | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 content/bn/examples/application/nginx-with-request.yaml diff --git a/content/bn/examples/application/nginx-with-request.yaml b/content/bn/examples/application/nginx-with-request.yaml new file mode 100644 index 0000000000..dd9d002a60 --- /dev/null +++ b/content/bn/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