37 lines
568 B
YAML
37 lines
568 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: ci4s-gen-deployment
|
|
namespace: ci4s-test
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: ci4s-gen
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: ci4s-gen
|
|
spec:
|
|
containers:
|
|
- name: ci4s-gen
|
|
image: ci4s-gen:v1.0
|
|
ports:
|
|
- containerPort: 9202
|
|
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: ci4s-gen-service
|
|
namespace: ci4s-test
|
|
spec:
|
|
type: NodePort
|
|
ports:
|
|
- port: 9202
|
|
nodePort: 31211
|
|
protocol: TCP
|
|
selector:
|
|
app: ci4s-gen
|
|
|