18 lines
284 B
YAML
18 lines
284 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: config
|
|
labels:
|
|
env: production
|
|
tier: backend
|
|
app: config
|
|
name: config-service
|
|
spec:
|
|
ports:
|
|
- port: 8888
|
|
targetPort: 8888
|
|
selector:
|
|
env: production
|
|
tier: backend
|
|
app: config
|
|
name: config-pod |