23 lines
385 B
YAML
23 lines
385 B
YAML
|
|
apiVersion: apps/v1
|
||
|
|
kind: Deployment
|
||
|
|
metadata:
|
||
|
|
name: fms
|
||
|
|
namespace: ruoyi
|
||
|
|
spec:
|
||
|
|
replicas: 1
|
||
|
|
selector:
|
||
|
|
matchLabels:
|
||
|
|
app: fms
|
||
|
|
template:
|
||
|
|
metadata:
|
||
|
|
labels:
|
||
|
|
app: fms
|
||
|
|
spec:
|
||
|
|
containers:
|
||
|
|
- name: fms
|
||
|
|
image: tuoheng-modules-fms-runtime
|
||
|
|
imagePullPolicy: Never
|
||
|
|
ports:
|
||
|
|
- containerPort: 9205
|
||
|
|
name: http
|