Skip to content

Commit

Permalink
third
Browse files Browse the repository at this point in the history
  • Loading branch information
shclub committed Jul 13, 2022
1 parent b67891f commit b5da970
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,4 +102,34 @@ https://211.252.87.34:30000/
https://cloud.kt.com/portal/user-guide/Container-container-guide
```

<br/>

## NGINX YAML

<br/>


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
```

0 comments on commit b5da970

Please sign in to comment.