mirror of
https://github.com/rubenhensen/k8scd.git
synced 2026-09-17 10:22:54 +02:00
25 lines
496 B
YAML
25 lines
496 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: mercury
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: mercury
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: mercury
|
|
spec:
|
|
containers:
|
|
- image: wangqiru/mercury-parser-api:latest
|
|
name: mercury
|
|
ports:
|
|
- name: http
|
|
containerPort: 3000
|
|
hostPort: 3000
|
|
protocol: TCP
|
|
restartPolicy: Always
|
|
terminationGracePeriodSeconds: 5
|