15 lines
316 B
YAML
15 lines
316 B
YAML
|
|
apiVersion: v1
|
||
|
|
kind: Service
|
||
|
|
metadata:
|
||
|
|
name: neg-demo-svc # Name of Service
|
||
|
|
spec: # Service's specification
|
||
|
|
type: NodePort
|
||
|
|
selector:
|
||
|
|
run: neg-demo-app # Selects Pods labelled run: neg-demo-app
|
||
|
|
ports:
|
||
|
|
- name: http
|
||
|
|
port: 80 # Service's port
|
||
|
|
protocol: TCP
|
||
|
|
targetPort: 9376
|
||
|
|
nodePort: 30000
|