Compare commits

..

No commits in common. "56e9c0ae4ab6e47d0370383e23b2aeadc6b9b9c7" and "2ef4b0009739034d68205769172dcc74a583b751" have entirely different histories.

2 changed files with 0 additions and 36 deletions

View File

@ -1 +0,0 @@
config.yaml

View File

@ -1,35 +0,0 @@
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
name: nginx-port
---
apiVersion: v1
kind: Service
metadata:
name: nginx
spec:
type: NodePort
selector:
app: nginx
ports:
- port: 80
nodePort: 30808
targetPort: nginx-port