You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
581 B
25 lines
581 B
apiVersion: apps/v1
|
|
kind: StatefulSet
|
|
metadata:
|
|
name: stateful-set
|
|
spec:
|
|
template:
|
|
metadata:
|
|
annotations:
|
|
sidecar.istio.io/inject: "false"
|
|
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
|
|
|