17 lines
222 B
YAML
17 lines
222 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: NodePort
|
|
|