-
Notifications
You must be signed in to change notification settings - Fork 3
/
deploy-mwh.yaml
289 lines (289 loc) · 8.62 KB
/
deploy-mwh.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
apiVersion: v1
kind: Secret
metadata:
name: webhook-tls-certificates
type: Opaque
data:
username: YWRtaW4=
password: MWYyZDFlMmU2N2Rm
---
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
name: test-mwh:namespace-admin
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: admin
subjects:
- kind: ServiceAccount
name: test-mwh
apiGroup: ""
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: test-mwh:namespaceperms
rules:
- apiGroups: [""]
resources: ["namespaces","secrets","services","configmaps","endpoints","persistentvolumeclaims","pods","pods/attach","pods/exec","pods/portforward","pods/proxy","replicationcontrollers","replicationcontrollers/scale","serviceaccounts","services/proxy"]
verbs: ["get","list","create","update","delete","watch","patch"]
- apiGroups: ["apps"]
resources: ["daemonsets","deployments","deployments/rollback","deployments/scale","replicasets","replicasets/scale","statefulsets","statefulsets/scale"]
verbs: ["get","list","create","update","delete","watch","patch"]
- apiGroups: ["extensions"]
resources: ["daemonsets","deployments","deployments/rollback","deployments/scale","ingresses","networkpolicies","replicasets","replicasets/scale","replicationcontrollers/scale"]
verbs: ["get","list","create","update","delete","watch","patch"]
- apiGroups: ["networking.k8s.io"]
resources: ["ingresses","networkpolicies"]
verbs: ["get","list","create","update","delete","watch","patch"]
- apiGroups: ["policy"]
resources: ["poddisruptionbudgets"]
verbs: ["get","list","create","update","delete","watch","patch"]
- apiGroups: ["rbac.authorization.k8s.io"]
resources: ["rolebindings","roles"]
verbs: ["get","list","create","update","delete","watch","patch"]
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: test-mwh:namespaceperms-binding
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: test-mwh:namespaceperms
subjects:
- kind: ServiceAccount
name: test-mwh
namespace: "default"
apiGroup: ""
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: test-mwh:clusterperms
rules:
- apiGroups: ["certificates.k8s.io"]
resources: ["certificatesigningrequests","certificatesigningrequests/approval"]
verbs: ["get","list","create","update","delete","watch","patch"]
- apiGroups: ["certificates.k8s.io"]
resources: ["signers"]
resourceNames: ["kubernetes.io/legacy-unknown","kubernetes.io/kubelet-serving","kubernetes.io/kube-apiserver-client","cloudark.io/kubeplus"]
verbs: ["approve"]
- apiGroups: ["apiextensions.k8s.io"]
resources: ["customresourcedefinitions"]
verbs: ["get","list","create","update","delete","watch","patch"]
- apiGroups: [""]
resources: ["endpoints"]
verbs: ["get","list","watch"]
- apiGroups: ["admissionregistration.k8s.io"]
resources: ["mutatingwebhookconfigurations"]
verbs: ["get","list","create","delete"]
- apiGroups: ["rbac.authorization.k8s.io"]
resources: ["clusterroles"]
verbs: ["get","list","create","delete"]
- apiGroups: ["rbac.authorization.k8s.io"]
resources: ["clusterrolebindings"]
verbs: ["get","list","create","delete"]
- apiGroups: ["","*","rbac.authorization.k8s.io","platformapi.kubeplus","networking.k8s.io","autoscaling"]
resources: ["*","groups","pods/portforward","serviceaccounts","users","pods/exec","horizontalpodautoscalers","networkpolicies","clusterrolebindings","clusterroles"]
verbs: ["get","list","watch","impersonate","create","delete","update","patch"]
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: test-mwh:allperms
rules:
#- apiGroups: ["*"]
# resources: ["*"]
# verbs: ["get","list","create","update","delete","watch","patch","impersonate"]
- apiGroups: [""]
resources: ["namespaces"]
verbs: ["patch"]
- apiGroups: ["certificates.k8s.io"]
resources: ["certificatesigningrequests","certificatesigningrequests/approval"]
verbs: ["get","list","create","update","delete","watch","patch"]
- apiGroups: ["certificates.k8s.io"]
resources: ["signers"]
resourceNames: ["kubernetes.io/legacy-unknown","kubernetes.io/kubelet-serving","kubernetes.io/kube-apiserver-client","cloudark.io/kubeplus"]
verbs: ["approve"]
- apiGroups: ["apiextensions.k8s.io"]
resources: ["customresourcedefinitions"]
verbs: ["get","list","create","update","delete","watch","patch"]
- apiGroups: [""]
resources: ["endpoints"]
verbs: ["get","list","watch"]
- apiGroups: ["admissionregistration.k8s.io"]
resources: ["mutatingwebhookconfigurations"]
verbs: ["get","list","create","delete"]
- apiGroups: ["rbac.authorization.k8s.io"]
resources: ["clusterroles"]
verbs: ["get","list","create","delete"]
- apiGroups: ["rbac.authorization.k8s.io"]
resources: ["clusterrolebindings"]
verbs: ["get","list","create","delete"]
- apiGroups: ["rbac.authorization.k8s.io"]
resources: ["roles"]
verbs: ["get","list","update","delete","create"]
- apiGroups: ["rbac.authorization.k8s.io"]
resources: ["rolebindings"]
verbs: ["get","list","create","delete"]
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: test-mwh:allperms-binding
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: test-mwh:allperms
subjects:
- kind: ServiceAccount
name: test-mwh
namespace: "default"
apiGroup: ""
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: test-mwh:readallperms
rules:
- apiGroups: ["*"]
resources: ["*"]
verbs: ["get","list","watch"]
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: test-mwh:readallperms-binding
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: test-mwh:readallperms
subjects:
- kind: ServiceAccount
name: test-mwh
namespace: "default"
apiGroup: ""
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: test-mwh:providerapiperms
rules:
- apiGroups: ["workflows.kubeplus"]
resources: ["resourcecompositions","resourceevents","resourcemonitors","resourcepolicies"]
verbs: ["get","list","create","update","delete","watch","patch"]
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: test-mwh:providerapiperms-binding
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: test-mwh:providerapiperms
subjects:
- kind: ServiceAccount
name: test-mwh
namespace: "default"
apiGroup: ""
---
apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
name: kubeplus-saas-provider-consumer
rules:
- apiGroups: ["platformapi.kubeplus"]
resources: ["*"]
verbs: ["get","list","create","update","delete","watch","patch"]
- apiGroups: [""]
resources: ["pods/portforward"]
verbs: ["get","list","create","update","delete","watch","patch"]
---
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
name: kubeplus-saas-provider-consumer-rolebinding
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: Role
name: kubeplus-saas-provider-consumer
subjects:
- kind: ServiceAccount
name: test-mwh
namespace: "default"
---
kind: ServiceAccount
apiVersion: v1
metadata:
name: test-mwh
namespace: "default"
---
apiVersion: v1
kind: Service
metadata:
name: crd-hook-service
namespace: "default"
labels:
app: crd-hook-service
spec:
ports:
- port: 443
targetPort: 443
selector:
app: kubeplus
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: test-mwh-deployment # do not change
namespace: "default"
spec:
replicas: 1
selector:
matchLabels:
app: kubeplus
template:
metadata:
name: kubeplus
labels:
app: kubeplus
spec:
serviceAccount: test-mwh
initContainers:
- name: mwh-setup
image: mwh-setup:latest
imagePullPolicy: IfNotPresent
env:
- name: KUBEPLUS_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
command: ["./webhook-create-self-signed-ca-cert.sh"]
args:
- "--service"
- "crd-hook-service"
- "--namespace"
- "$(KUBEPLUS_NAMESPACE)"
- "--secret"
- "webhook-tls-certificates"
containers:
- name: crd-hook
image: mwh:latest
imagePullPolicy: IfNotPresent
args:
- -tlsCertFile=/etc/webhook/certs/cert.pem
- -tlsKeyFile=/etc/webhook/certs/key.pem
- -alsologtostderr
#- -v=4
- 2>&1
volumeMounts:
- name: webhook-certs
mountPath: /etc/webhook/certs
readOnly: true
volumes:
- name: webhook-certs
secret:
secretName: webhook-tls-certificates
---