mirror of
https://github.com/autistic-symposium/ml-quantum-tensorflow-py.git
synced 2025-05-02 06:46:07 -04:00
22 lines
509 B
YAML
22 lines
509 B
YAML
apiVersion: apps/v1
|
|
kind: StatefulSet
|
|
metadata:
|
|
name: stateful-set
|
|
spec:
|
|
template:
|
|
spec:
|
|
containers:
|
|
- name: manager
|
|
image: gcr.io/$(project)/application-controller:latest
|
|
command:
|
|
- /go/bin/dlv
|
|
args:
|
|
- --listen=:2345
|
|
- --headless=true
|
|
- --api-version=2
|
|
- exec
|
|
- /go/src/github.com/kubernetes-sigs/application/manager
|
|
ports:
|
|
- containerPort: 2345
|
|
securityContext:
|
|
privileged: true
|