k8s-training-app/01_nginx/yaml/03_service.yaml

16 lines
196 B
YAML

---
apiVersion: v1
kind: Service
metadata:
name: nginx
spec:
ports:
- port: 80
protocol: TCP
targetPort: 80
selector:
app: nginx
type: LoadBalancer
# vim: set ts=2 sw=2 et: