16 lines
217 B
16 lines
217 B
7 years ago
|
---
|
||
7 years ago
|
apiVersion: v1
|
||
|
kind: Service
|
||
|
metadata:
|
||
|
name: shipping
|
||
|
labels:
|
||
|
name: shipping
|
||
|
spec:
|
||
|
ports:
|
||
|
# the port that this service should serve on
|
||
|
- port: 80
|
||
|
targetPort: 80
|
||
|
selector:
|
||
|
name: shipping
|
||
7 years ago
|
|