k8s-samples/CKA_Course/services/nodeport.yaml

34 lines
542 B
YAML
Raw Normal View History

2022-08-17 02:59:58 +00:00
apiVersion: v1
kind: Service
metadata:
name: svc-clusterip
spec:
type: NodePort
selector:
app: svc-example
ports:
- protocol: TCP
port: 80
targetPort: 80
nodePort: 30080
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: deployment-svc-example
spec:
replicas: 3
selector:
matchLabels:
app: svc-example
template:
metadata:
labels:
app: svc-example
spec:
containers:
- name: nginx
image: nginx:1.19.1
ports:
- containerPort: 80