45 lines
895 B
YAML
45 lines
895 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: ci4s-management-platform-deployment
|
|
namespace: argo
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: ci4s-management-platform
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: ci4s-management-platform
|
|
spec:
|
|
containers:
|
|
- name: ci4s-management-platform
|
|
image: 172.20.32.187/ci4s/managent:20240401
|
|
ports:
|
|
- containerPort: 9213
|
|
volumeMounts:
|
|
- name: resource
|
|
mountPath: /home/resource/
|
|
volumes:
|
|
- name: resource
|
|
hostPath:
|
|
path: /home/resource/
|
|
type: DirectoryOrCreate
|
|
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: ci4s-management-platform-service
|
|
namespace: argo
|
|
spec:
|
|
type: NodePort
|
|
ports:
|
|
- port: 9213
|
|
nodePort: 31208
|
|
protocol: TCP
|
|
selector:
|
|
app: ci4s-management-platform
|
|
|