-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoperator.yaml
49 lines (49 loc) · 1.06 KB
/
operator.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
apiVersion: apps/v1
kind: Deployment
metadata:
name: iotdb-operator
spec:
replicas: 1
strategy:
type: Recreate
selector:
matchLabels:
application: iotdb-operator
template:
metadata:
labels:
application: iotdb-operator
spec:
serviceAccountName: iotdb-operator-account
containers:
- name: the-only-one
image: jfeinauer/iotdb-operator:latest
imagePullPolicy: Always
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: iotdb-operator-account
---
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: iotdb-operator
rules:
- apiGroups: ["apps", "", "batch", "jfeinauer.dev"]
# resources: ["pods", "deployments", "statefulsets", "services"]
resources: ["*"]
verbs: ["*"]
---
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: iotdb-operator
subjects:
- kind: ServiceAccount
name: iotdb-operator-account
namespace: iotdb-demo
roleRef:
kind: ClusterRole
name: iotdb-operator
apiGroup: rbac.authorization.k8s.io