From b5da9706a9d2fe91012f1aa413f7aa2dabebd07d Mon Sep 17 00:00:00 2001 From: LEE SEOK HWAN Date: Wed, 13 Jul 2022 13:51:25 +0900 Subject: [PATCH] third --- README.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/README.md b/README.md index b568fc3..2e4ac4a 100644 --- a/README.md +++ b/README.md @@ -102,4 +102,34 @@ https://211.252.87.34:30000/ https://cloud.kt.com/portal/user-guide/Container-container-guide ``` +
+ +## NGINX YAML + +
+ +nginx.yaml +```bash +apiVersion: apps/v1 +kind: Deployment +metadata: + name: nginx-deployment + labels: + app: nginx +spec: + replicas: 1 + selector: + matchLabels: + app: nginx + template: + metadata: + labels: + app: nginx + spec: + containers: + - name: nginx + image: nginx:1.14.2 + ports: + - containerPort: 80 +```