-
Notifications
You must be signed in to change notification settings - Fork 0
/
deployment.yaml
69 lines (62 loc) · 1.24 KB
/
deployment.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
apiVersion: v1
kind: ServiceAccount
metadata:
name: rancher-selector-sa
namespace: kube-system
---
apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
name: rancher-selector-role
namespace: kube-system
rules:
- apiGroups: [""]
resources: ["configmaps"]
verbs: ["create", "get", "update", "list"]
---
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
name: rancher-selector-rolebinding
namespace: kube-system
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: Role
name: rancher-selector-role
subjects:
- kind: ServiceAccount
name: rancher-selector-sa
namespace: kube-system
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: rancher-selector
namespace: kube-system
spec:
replicas: 1
selector:
matchLabels:
app: rancher-selector
template:
metadata:
labels:
app: rancher-selector
spec:
serviceAccountName: rancher-selector-sa
containers:
- name: rancher-selector
image: wrkode/rancher-selector:0.9
imagePullPolicy: Always
---
apiVersion: v1
kind: Service
metadata:
name: rancher-selector-service
namespace: kube-system
spec:
type: ClusterIP
ports:
- port: 8080
selector:
app: rancher-selector