29 lines
551 B
YAML
29 lines
551 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
labels:
|
|
app: converge
|
|
name: converge
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: converge
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: converge
|
|
prometheus-scrapable: "true"
|
|
spec:
|
|
containers:
|
|
- image: your.repo.com/converge:1.0
|
|
imagePullPolicy: Always
|
|
name: converge
|
|
ports:
|
|
- containerPort: 8000
|
|
name: http
|
|
- containerPort: 8001
|
|
name: prometheus
|
|
args:
|
|
- --pprof
|