Skip to content

Commit 59e2d10

Browse files
authored
Added statefulset yaml to deploy dope (#69)
Signed-off-by: Amit Bhatt <[email protected]>
1 parent 2fd8a3f commit 59e2d10

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

deploy/operator.yaml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
# This StatefulSet deploys dope
3+
apiVersion: apps/v1
4+
kind: StatefulSet
5+
metadata:
6+
labels:
7+
app.mayadata.io/name: dope
8+
name: dope
9+
namespace: dope
10+
spec:
11+
replicas: 1
12+
selector:
13+
matchLabels:
14+
app.mayadata.io/name: dope
15+
serviceName: ""
16+
template:
17+
metadata:
18+
labels:
19+
app.mayadata.io/name: dope
20+
spec:
21+
serviceAccountName: dope
22+
containers:
23+
- name: dope
24+
image: mayadataio/dope:v1.3.0
25+
command: ["/usr/bin/dope"]
26+
args:
27+
- --logtostderr
28+
- --run-as-local
29+
- -v=1
30+
- --discovery-interval=30s
31+
- --cache-flush-interval=240s

0 commit comments

Comments
 (0)