|
123456789101112131415161718192021222324252627282930313233343536 |
- apiVersion: apps/v1
- kind: Deployment
- metadata:
- name: ci4s-front-deployment
- namespace: argo
- spec:
- replicas: 1
- selector:
- matchLabels:
- app: ci4s-front
- template:
- metadata:
- labels:
- app: ci4s-front
- spec:
- containers:
- - name: ci4s-front
- image: ${k8s-12front-image}
- ports:
- - containerPort: 8000
-
- ---
- apiVersion: v1
- kind: Service
- metadata:
- name: ci4s-front-service
- namespace: argo
- spec:
- type: NodePort
- ports:
- - port: 8000
- nodePort: 31213
- protocol: TCP
- selector:
- app: ci4s-front
-
|