forked from openshift/configuration-anomaly-detection
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.yaml
More file actions
418 lines (418 loc) · 10 KB
/
template.yaml
File metadata and controls
418 lines (418 loc) · 10 KB
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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
apiVersion: template.openshift.io/v1
kind: Template
metadata:
name: configuration-anomaly-detection-template
parameters:
- name: IMAGE_TAG
value: v0.0.0
- name: REGISTRY_IMG
value: quay.io/app-sre/configuration-anomaly-detection
- name: NAMESPACE_NAME
value: configuration-anomaly-detection
- name: CAD_EXPERIMENTAL_ENABLED
value: "FALSE"
- name: LOG_LEVEL
value: info
- name: TEKTON_RESOURCE_PRUNER_IMAGE
value: quay.io/openshift-pipeline/openshift-pipelines-pipelines-cli-tkn-rhel8
- name: TEKTON_RESOURCE_PRUNER_SHA
objects:
- apiVersion: apps/v1
kind: Deployment
metadata:
name: cad-interceptor-deployment
spec:
replicas: 2
selector:
matchLabels:
app: cad-interceptor
template:
metadata:
labels:
app: cad-interceptor
spec:
containers:
- args:
- interceptor
command:
- /bin/bash
- -c
env:
- name: CAD_EXPERIMENTAL_ENABLED
value: ${CAD_EXPERIMENTAL_ENABLED}
- name: LOG_LEVEL
value: ${LOG_LEVEL}
envFrom:
- secretRef:
name: cad-pd-token
image: ${REGISTRY_IMG}:${IMAGE_TAG}
livenessProbe:
failureThreshold: 3
httpGet:
path: /ready
port: 8080
initialDelaySeconds: 10
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 5
name: cad-interceptor
ports:
- containerPort: 8080
readinessProbe:
failureThreshold: 3
httpGet:
path: /ready
port: 8080
initialDelaySeconds: 10
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 5
resources:
limits:
cpu: 100m
memory: 500Mi
requests:
cpu: 10m
memory: 100Mi
securityContext:
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
runAsGroup: 65532
runAsNonRoot: true
runAsUser: 65532
seccompProfile:
type: RuntimeDefault
restartPolicy: Always
serviceAccountName: pipeline
terminationGracePeriodSeconds: 30
- apiVersion: v1
kind: Service
metadata:
name: cad-interceptor-service
labels:
app: configuration-anomaly-detection
spec:
ports:
- name: web
port: 8080
protocol: TCP
targetPort: 8080
selector:
app: cad-interceptor
type: ClusterIP
- apiVersion: triggers.tekton.dev/v1alpha1
kind: Interceptor
metadata:
name: cad-interceptor
spec:
clientConfig:
service:
name: cad-interceptor-service
namespace: ${NAMESPACE_NAME}
port: 8080
- apiVersion: triggers.tekton.dev/v1beta1
kind: TriggerBinding
metadata:
name: cad-check-trigger
spec:
params:
- name: payload
value: $(body)
- apiVersion: triggers.tekton.dev/v1alpha1
kind: TriggerTemplate
metadata:
annotations:
triggers.tekton.dev/old-escape-quotes: "true"
name: cad-check-trigger-template
spec:
params:
- description: The event that triggered the webhook.
name: payload
resourcetemplates:
- apiVersion: tekton.dev/v1beta1
kind: PipelineRun
metadata:
name: cad-check-$(uid)
spec:
params:
- name: payload
value: $(tt.params.payload)
pipelineRef:
name: cad-checks-pipeline
serviceAccountName: cad-sa
taskRunSpecs:
- computeResources:
limits:
cpu: 500m
memory: 256Mi
requests:
cpu: 100m
memory: 64Mi
pipelineTaskName: perform-cad-checks
timeout: 30m
- apiVersion: triggers.tekton.dev/v1beta1
kind: Trigger
metadata:
name: cad-pipe-listener
spec:
bindings:
- ref: cad-check-trigger
interceptors:
- ref:
kind: NamespacedInterceptor
name: cad-interceptor
template:
ref: cad-check-trigger-template
- apiVersion: triggers.tekton.dev/v1alpha1
kind: EventListener
metadata:
annotations:
triggers.tekton.dev/old-escape-quotes: "true"
name: cad-event-listener
spec:
resources:
kubernetesResource:
spec:
template:
spec:
containers:
- env:
- name: TLS_CERT
valueFrom:
secretKeyRef:
key: tls.crt
name: cad-event-listener-tls-secret
- name: TLS_KEY
valueFrom:
secretKeyRef:
key: tls.key
name: cad-event-listener-tls-secret
resources:
limits:
cpu: 500m
memory: 256Mi
requests:
cpu: 100m
memory: 64Mi
triggers:
- triggerRef: cad-pipe-listener
- apiVersion: tekton.dev/v1beta1
kind: Pipeline
metadata:
name: cad-checks-pipeline
spec:
params:
- description: Json string of the event data
name: payload
type: string
tasks:
- name: perform-cad-checks
params:
- name: payload
value: $(params.payload)
- name: pipeline-name
value: $(context.pipelineRun.name)
taskRef:
name: cad-checks
- apiVersion: v1
kind: ResourceQuota
metadata:
name: pipelinerun-counts
spec:
hard:
count/pipelineruns.tekton.dev: "1000"
- apiVersion: v1
kind: ServiceAccount
metadata:
name: cad-sa
- apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
name: cad-pipelinerun-role
rules:
- apiGroups:
- ""
resources:
- configmaps
- secrets
verbs:
- get
- list
- watch
- apiGroups:
- tekton.dev
resources:
- pipelineruns
verbs:
- create
- apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
name: cad-pipelinerun-rolebinding
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: Role
name: cad-pipelinerun-role
subjects:
- kind: ServiceAccount
name: cad-sa
- apiVersion: v1
kind: Secret
metadata:
name: cad-backplane-secret
stringData:
BACKPLANE_INITIAL_ARN: CHANGEME
BACKPLANE_URL: CHANGEME
type: Opaque
- apiVersion: v1
kind: Secret
metadata:
name: cad-ocm-client-secret
stringData:
CAD_OCM_CLIENT_ID: CHANGEME
CAD_OCM_CLIENT_SECRET: CHANGEME
CAD_OCM_URL: https://api.stage.openshift.com
type: Opaque
- apiVersion: tekton.dev/v1beta1
kind: Task
metadata:
name: cad-checks
spec:
params:
- description: Json string of the event data
name: payload
type: string
- description: The pipelinerun name
name: pipeline-name
type: string
steps:
- args:
- |-
# save the payload to a file
folder=$(mktemp -d)
file=${folder}/payload.json
cat << EOF > $file
$(params.payload)
EOF
# run the cadctl command
PIPELINE_NAME=$(params.pipeline-name) cadctl investigate --payload-path $file
command:
- /bin/bash
- -c
env:
- name: CAD_PROMETHEUS_PUSHGATEWAY
value: aggregation-pushgateway:9091
- name: CAD_EXPERIMENTAL_ENABLED
value: ${CAD_EXPERIMENTAL_ENABLED}
- name: LOG_LEVEL
value: ${LOG_LEVEL}
- name: CAD_HCM_AI_TOKEN
valueFrom:
secretKeyRef:
key: token
name: srep-ai-sa-token
envFrom:
- secretRef:
name: cad-ocm-client-secret
- secretRef:
name: cad-pd-token
- secretRef:
name: cad-backplane-secret
image: ${REGISTRY_IMG}:${IMAGE_TAG}
name: check-infrastructure
resources:
limits:
cpu: 100m
memory: 256Mi
requests:
cpu: 10m
memory: 64Mi
- apiVersion: batch/v1
kind: CronJob
metadata:
labels:
tektonconfig.operator.tekton.dev/pruner: "true"
name: tekton-resource-pruner
spec:
concurrencyPolicy: Forbid
failedJobsHistoryLimit: 1
jobTemplate:
spec:
backoffLimit: 3
template:
spec:
containers:
- args:
- tkn pipelinerun delete --keep=100 -f
command:
- /bin/sh
- -c
image: ${TEKTON_RESOURCE_PRUNER_IMAGE}@${TEKTON_RESOURCE_PRUNER_SHA}
imagePullPolicy: IfNotPresent
name: tekton-resource-pruner
resources:
limits:
cpu: 500m
memory: 256Mi
requests:
cpu: 100m
memory: 64Mi
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: FallbackToLogsOnError
dnsPolicy: ClusterFirst
restartPolicy: Never
schedulerName: default-scheduler
serviceAccount: cad-tekton-pruner
serviceAccountName: cad-tekton-pruner
terminationGracePeriodSeconds: 30
ttlSecondsAfterFinished: 3600
schedule: 0 * * * *
successfulJobsHistoryLimit: 3
suspend: false
- apiVersion: v1
kind: ServiceAccount
metadata:
name: cad-tekton-pruner
- apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
name: cad-tekton-pruner-role
rules:
- apiGroups:
- ""
resources:
- pods
verbs:
- delete
- get
- watch
- list
- apiGroups:
- tekton.dev
resources:
- pipelineruns
- taskruns
verbs:
- delete
- list
- get
- watch
- apiGroups:
- batch
resources:
- jobs
verbs:
- create
- apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
name: cad-tekton-pruner-role-binding
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: Role
name: cad-tekton-pruner-role
subjects:
- kind: ServiceAccount
name: cad-tekton-pruner