20 lines
338 B
YAML
20 lines
338 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: discovery
|
|
labels:
|
|
env: production
|
|
tier: backend
|
|
app: discovery
|
|
name: discovery-service
|
|
spec:
|
|
type: NodePort
|
|
ports:
|
|
- port: 8761
|
|
targetPort: 8761
|
|
nodePort: 30002
|
|
selector:
|
|
env: production
|
|
tier: backend
|
|
app: discovery
|
|
name: discovery-pod |