Files
Node.js-14-Cookbook/Chapter11/deploying-to-the-cloud/micro/deployment/service-template-lb.yml
T
2017-07-31 11:33:31 +05:30

17 lines
226 B
YAML

apiVersion: v1
kind: Service
metadata:
name: _NAME_
labels:
run: _NAME_
spec:
ports:
- port: _PORT_
name: main
protocol: TCP
targetPort: _PORT_
selector:
run: _NAME_
type: LoadBalancer