k8s-samples/CKA_Course/services/nodeport.yaml
2022-08-16 21:59:58 -05:00

33 lines
542 B
YAML

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