mirror of https://github.com/k3s-io/k3s
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
625 B
36 lines
625 B
3 years ago
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
name: test-nodeport
|
||
|
spec:
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
k8s-app: nginx-app-nodeport
|
||
|
replicas: 2
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
k8s-app: nginx-app-nodeport
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: nginx
|
||
|
image: ranchertest/mytestcontainer
|
||
|
ports:
|
||
|
- containerPort: 80
|
||
|
---
|
||
|
apiVersion: v1
|
||
|
kind: Service
|
||
|
metadata:
|
||
|
labels:
|
||
|
k8s-app: nginx-app-nodeport
|
||
|
name: nginx-nodeport-svc
|
||
|
namespace: default
|
||
|
spec:
|
||
|
type: NodePort
|
||
|
ports:
|
||
|
- port: 80
|
||
|
nodePort: 30096
|
||
|
name: http
|
||
|
selector:
|
||
|
k8s-app: nginx-app-nodeport
|