24 lines
498 B
YAML
24 lines
498 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: catalog
|
|
spec:
|
|
template:
|
|
spec:
|
|
containers:
|
|
- name: catalog
|
|
command:
|
|
- /go/bin/dlv
|
|
args:
|
|
- --headless
|
|
- --listen=0.0.0.0:2345
|
|
- --api-version=2
|
|
- --log
|
|
- --accept-multiclient
|
|
#- --log-output=rpc,dap
|
|
- exec
|
|
- /opt/catalog
|
|
- --continue
|
|
ports:
|
|
- containerPort: 2345
|