26 lines
387 B
YAML
26 lines
387 B
YAML
# PWD 服务 (端口 8180, 本地)
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: pwd-external
|
|
namespace: default
|
|
spec:
|
|
type: ClusterIP
|
|
ports:
|
|
- port: 8180
|
|
targetPort: 8180
|
|
protocol: TCP
|
|
name: http
|
|
---
|
|
apiVersion: v1
|
|
kind: Endpoints
|
|
metadata:
|
|
name: pwd-external
|
|
namespace: default
|
|
subsets:
|
|
- addresses:
|
|
- ip: 121.4.112.18
|
|
ports:
|
|
- port: 8180
|
|
name: http
|