forked from litmuschaos/litmus-e2e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.master-plan.yml
553 lines (489 loc) · 19.8 KB
/
.master-plan.yml
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
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
apiVersion: e2e.mayadata.io/v1alpha1
kind: MasterPlan
metadata:
name: litmus-e2e-master-testplan
spec:
tests:
# ----------------------------------------------------------
# Kubernetes generic application level chaos experiment BDDs
# ----------------------------------------------------------
- tcid: TCID-EC2-GENERIC-APP-POD-DELETE
name: "TCID-EC2-GENERIC-APP-POD-DELETE"
description: "Fail the application pod"
labels:
test/feature: "Generic-App"
test/tags: "pod, kill"
git/location: "https://github.com/litmuschaos/litmus-e2e/tree/gh-pages/generic-pipeline/pod-delete"
test/status: "Done"
- tcid: TCID-EC2-GENERIC-APP-CONTAINER-KILL
name: "TCID-EC2-GENERIC-APP-CONTAINER-KILL"
description: "Kill one container in the application pod"
labels:
test/feature: "Generic-App"
test/tags: "pod, container"
git/location: "https://github.com/litmuschaos/litmus-e2e/tree/gh-pages/generic-pipeline/container-kill"
test/status: "Done"
- tcid: TCID-EC2-GENERIC-APP-POD-CPU-HOG
name: "TCID-EC2-GENERIC-APP-POD-CPU-HOG"
description: "Consume CPU resources on the application container"
labels:
test/feature: "Generic-App"
test/tags: "pod, cpu,container"
git/location: "https://github.com/litmuschaos/litmus-e2e/tree/gh-pages/generic-pipeline/pod-cpu-hog"
test/status: "Done"
- tcid: TCID-EC2-GENERIC-APP-POD-MEMORY-HOG
name: "TCID-EC2-GENERIC-APP-POD-MEMORY-HOG"
description: "Consume memory resources on the application container"
labels:
test/feature: "Generic-App"
test/tags: "pod, memory"
git/location: "https://github.com/litmuschaos/litmus-e2e/tree/gh-pages/generic-pipeline/pod-memory-hog"
test/status: "Done"
- tcid: TCID-EC2-GENERIC-APP-POD-NETWORK-CORRUPTION
name: "TCID-EC2-GENERIC-APP-POD-NETWORK-CORRUPTION"
description: "Inject Network Packet Corruption Into Application Pod"
labels:
test/feature: "Generic-App"
test/tags: "pod, network, corruption"
git/location: "https://github.com/litmuschaos/litmus-e2e/tree/gh-pages/generic-pipeline/pod-network-corruption"
test/status: "Done"
- tcid: TCID-EC2-GENERIC-APP-POD-NETWORK-LATENCY
name: "TCID-EC2-GENERIC-APP-POD-NETWORK-LATENCY"
description: "Inject Network Latency Into Application Pod"
labels:
test/feature: "Generic-App"
test/tags: "pod, network, latency"
git/location: "https://github.com/litmuschaos/litmus-e2e/tree/gh-pages/generic-pipeline/pod-network-latency"
test/status: "Done"
- tcid: TCID-EC2-GENERIC-APP-POD-NETWORK-LOSS
name: "TCID-EC2-GENERIC-APP-POD-NETWORK-LOSS"
description: "Inject Packet Loss Into Application Pod"
labels:
test/feature: "Generic-App"
test/tags: "pod, network, loss"
git/location: "https://github.com/litmuschaos/litmus-e2e/tree/gh-pages/generic-pipeline/pod-network-loss"
test/status: "Done"
- tcid: TCID-EC2-GENERIC-APP-POD-NETWORK-DUPLICATION
name: "TCID-EC2-GENERIC-APP-POD-NETWORK-DUPLICATION"
description: "Inject Network Duplication Into Application Pod"
labels:
test/feature: "Generic-App"
test/tags: "pod, network, duplication"
git/location: "https://github.com/litmuschaos/litmus-e2e/tree/gh-pages/generic-pipeline/pod-network-duplication"
test/status: "Not Done"
- tcid: TCID-EC2-GENERIC-APP-DISK-FILL
name: "TCID-EC2-GENERIC-APP-DISK-FILL"
description: "Fill up Ephemeral Storage of a Pod"
labels:
test/feature: "Generic-App"
test/tags: "pod, ephemeral, disk"
git/location: "https://github.com/litmuschaos/litmus-e2e/tree/gh-pages/generic-pipeline/disk-fill"
test/status: "Done"
- tcid: TCID-EC2-GENERIC-APP-POD-IO-STRESS
name: "TCID-EC2-GENERIC-APP-POD-IO-STRESS"
description: "Inject IO stress on the application container"
labels:
test/feature: "Generic-App"
test/tags: "pod, io, stress"
git/location: "https://github.com/litmuschaos/litmus-e2e/tree/gh-pages/generic-pipeline/pod-io-stress"
test/status: "Done"
- tcid: TCID-EC2-GENERIC-APP-POD-AFFECTED-PERCENTAGE-TON-PARALLEL
name: "TCID-EC2-GENERIC-APP-POD-AFFECTED-PERCENTAGE-TON-PARALLEL"
description: "Test the app level experiment when pod affected percentage is 100 and sequence is parallel"
labels:
test/feature: "Generic-App"
test/tags: "pod, parallel,pod-affected-percentage"
git/location: ""
test/status: "Done"
- tcid: TCID-EC2-GENERIC-APP-POD-AFFECTED-PERCENTAGE-TON-SERIES
name: "TCID-EC2-GENERIC-APP-POD-AFFECTED-PERCENTAGE-TON-SERIES"
description: "Test the app level experiment when pod affected percentage is 100 and sequence is parallel"
labels:
test/feature: "Generic-App"
test/tags: "pod, series,pod-affected-percentage"
git/location: ""
test/status: "Done"
- tcid: TCID-EC2-GENERIC-APP-MULTIPLE-APP-DEPLOY
name: "TCID-EC2-GENERIC-APP-MULTIPLE-APP-DEPLOY"
description: "Test the app level experiment when pod is deployed with comman label"
labels:
test/feature: "Generic-App"
test/tags: "pod, multiple deployment"
git/location: ""
test/status: "Done"
- tcid: TCID-EC2-GENERIC-INFRA-POD-AUTOSCALER
name: "TCID-EC2-GENERIC-INFRA-POD-AUTOSCALER"
description: "Scale the application replicas and test the node autoscaling on cluster"
labels:
test/feature: "Generic-App"
test/tags: "pod, io, stress"
git/location: "https://github.com/litmuschaos/litmus-e2e/tree/gh-pages/generic-pipeline/pod-io-stress"
test/status: "Done"
- tcid: TCID-EC2-GENERIC-INFRA-WITH-APP-INFO
name: "TCID-EC2-GENERIC-INFRA-WITH-APP-INFO"
description: "Test the experiment with providing appinfo"
labels:
test/feature: "Generic-App"
test/tags: "pod, appinfo"
git/location: ""
test/status: "Done"
# ----------------------------------------------------------
# Kubernetes Infra level chaos experiment BDDs
# ----------------------------------------------------------
- tcid: TCID-EC2-GENERIC-INFRA-NODE-CPU-HOG
name: "TCID-EC2-GENERIC-APP-NODE-CPU-HOG"
description: "Exhaust CPU resources on the Kubernetes Node"
labels:
test/feature: "Generic-Infra"
test/tags: "node, cpu, spike"
git/location: "https://github.com/litmuschaos/litmus-e2e/tree/gh-pages/generic-pipeline/disk-fill"
test/status: "Done"
- tcid: TCID-EC2-GENERIC-INFRA-NODE-MEMORY-HOG
name: "TCID-EC2-GENERIC-INFRA-NODE-MEMORY-HOG"
description: "Exhaust Memory resources on the Kubernetes Node"
labels:
test/feature: "Generic-Infra"
test/tags: "node, memory, hog"
git/location: "https://github.com/litmuschaos/litmus-e2e/tree/gh-pages/generic-pipeline/node-memory-hog"
test/status: "Done"
- tcid: TCID-EC2-GENERIC-INFRA-NODE-DRAIN
name: "TCID-EC2-GENERIC-INFRA-NODE-DRAIN"
description: "Drain the node where application pod is scheduled"
labels:
test/feature: "Generic-Infra"
test/tags: "node, drain"
git/location: "https://github.com/litmuschaos/litmus-e2e/tree/gh-pages/generic-pipeline/node-drain"
test/status: "Done"
- tcid: TCID-EC2-GENERIC-INFRA-KUBELET-SERVICE-KILL
name: "TCID-EC2-GENERIC-INFRA-KUBELET-SERVICE-KILL"
description: "Kills the kubelet service on the application node to check the resiliency"
labels:
test/feature: "Generic-Infra"
test/tags: "kubelet, service, kill"
git/location: "https://github.com/litmuschaos/litmus-e2e/tree/gh-pages/generic-pipeline/kubelet-service-kill"
test/status: "Done"
- tcid: TCID-EC2-GENERIC-INFRA-NODE-TAINT
name: "TCID-EC2-GENERIC-INFRA-NODE-TAINT"
description: "Taint the application node"
labels:
test/feature: "Generic-Infra"
test/tags: "node, taint"
git/location: "https://github.com/litmuschaos/litmus-e2e/tree/gh-pages/generic-pipeline/node-taint"
test/status: "Done"
- tcid: TCID-EC2-GENERIC-INFRA-NODE-IO-STRESS
name: "TCID-EC2-GENERIC-INFRA-NODE-IO-STRESS"
description: "Give IO Stress on the Kubernetes Node"
labels:
test/feature: "Generic-Infra"
test/tags: "node, io, disk, stress"
git/location: "https://github.com/litmuschaos/litmus-e2e/tree/gh-pages/generic-pipeline/node-io-stress"
test/status: "Done"
- tcid: TCID-EC2-GENERIC-INFRA-NODE-SELECTOR
name: "TCID-EC2-GENERIC-INFRA-NODE-SELECTOR"
description: "Node selector functionality for given target node or node label"
labels:
test/feature: "Generic-Infra"
test/tags: "node, selector"
git/location: "https://github.com/litmuschaos/litmus-e2e/tree/gh-pages/generic-pipeline/node-selector"
# -------------------------------------------------
# Kubernetes Kube AWS chaos experiment BDD Tests
# -------------------------------------------------
- tcid: TCID-EC2-KubeAWS-INFRA-EC2-TERMINATE
name: "TCID-EC2-KubeAWS-INFRA-EC2-TERMINATE"
description: "Terminates an AWS EC2 instance"
labels:
test/feature: "kube-aws"
test/tags: "aws, ec2 terminate"
git/location: ""
test/status: "Done"
- tcid: TCID-EC2-KubeAWS-INFRA-EBS-LOSS
name: "TCID-EC2-KubeAWS-INFRA-EBS-LOSS"
description: "Detach an EBS volume"
labels:
test/feature: "kube-aws"
test/tags: "aws, ebs loss"
git/location: ""
test/status: "Not Done"
# -------------------------------------------------
# Kubernetes Azure chaos experiment BDD Tests
# -------------------------------------------------
- tcid: TCID-EC2-AZURE-INFRA-INSTANCE-STOP
name: "TCID-EC2-AZURE-INFRA-INSTANCE-STOP"
description: "Stops an Azure VM instance"
labels:
test/feature: "azure"
test/tags: "azure, instance stop"
git/location: ""
test/status: "Done"
- tcid: TCID-EC2-AZURE-INFRA-DISK-LOSS
name: "TCID-EC2-AZURE-INFRA-DISK-LOSS"
description: "Detach a VM Disk"
labels:
test/feature: "azure"
test/tags: "azure, disk loss"
git/location: ""
test/status: "Done"
# -------------------------------------------------
# Kubernetes GCP chaos experiment BDD Tests
# -------------------------------------------------
- tcid: TCID-EC2-GCP-INFRA-VM-STOP
name: "TCID-EC2-GCP-INFRA-VM-STOP"
description: "Stop a GCP VM instance"
labels:
test/feature: "gcp"
test/tags: "gcp, vm stop"
git/location: ""
test/status: "Done"
- tcid: TCID-EC2-GCP-INFRA-DISK-LOSS
name: "TCID-EC2-GCP-INFRA-DISK-LOSS"
description: "Detach a Disk Volume"
labels:
test/feature: "gcp"
test/tags: "gcp, disk loss"
git/location: ""
test/status: "Done"
# ----------------------------------------------------------
# LitmusChaos Ansible Experiments BDDs
# ----------------------------------------------------------
- tcid: TCID-EC2-ANSIBLE-APP-POD-DELETE
name: "TCID-EC2-ANSIBLE-APP-POD-DELETE:"
description: "Delete the application pod"
labels:
test/feature: "Ansible-Experiment"
test/tags: "pod, delete"
git/location: ""
test/status: "Done"
- tcid: TCID-EC2-ANSIBLE-APP-CONTAINER-KILL
name: "TCID-EC2-ANSIBLE-APP-CONTAINER-KILL"
description: "Kill one container in the application pod"
labels:
test/feature: "Ansible-Experiment"
test/tags: "pod, container"
git/location: ""
test/status: "Done"
- tcid: TCID-EC2-ANSIBLE-APP-POD-CPU-HOG
name: "TCID-EC2-ANSIBLE-APP-POD-CPU-HOG"
description: "Consume CPU resources on the application container"
labels:
test/feature: "Ansible-Experiment"
test/tags: "pod, cpu,container"
git/location: ""
test/status: "Done"
- tcid: TCID-EC2-ANSIBLE-APP-POD-MEMORY-HOG
name: "TCID-EC2-ANSIBLE-APP-POD-MEMORY-HOG"
description: "Consume memory resources on the application container"
labels:
test/feature: "Ansible-Experiment"
test/tags: "pod, memory"
git/location: ""
test/status: "Done"
- tcid: TCID-EC2-ANSIBLE-APP-POD-NETWORK-CORRUPTION
name: "TCID-EC2-ANSIBLE-APP-POD-NETWORK-CORRUPTION"
description: "Inject Network Packet Corruption Into Application Pod"
labels:
test/feature: "Ansible-Experiment"
test/tags: "pod, network, corruption"
git/location: ""
test/status: "Done"
- tcid: TCID-EC2-ANSIBLE-APP-POD-NETWORK-LATENCY
name: "TCID-EC2-ANSIBLE-APP-POD-NETWORK-LATENCY"
description: "Inject Network Latency Into Application Pod"
labels:
test/feature: "Ansible-Experiment"
test/tags: "pod, network, latency"
git/location: ""
test/status: "Done"
- tcid: TCID-EC2-ANSIBLE-APP-POD-NETWORK-LOSS
name: "TCID-EC2-ANSIBLE-APP-POD-NETWORK-LOSS"
description: "Inject Packet Loss Into Application Pod"
labels:
test/feature: "Ansible-Experiment"
test/tags: "pod, network, loss"
git/location: ""
test/status: "Done"
- tcid: TCID-EC2-ANSIBLE-APP-POD-NETWORK-DUPLICATION
name: "TCID-EC2-ANSIBLE-APP-POD-NETWORK-DUPLICATION"
description: "Inject Network Duplication Into Application Pod"
labels:
test/feature: "Ansible-Experiment"
test/tags: "pod, network, duplication"
git/location: ""
test/status: "Not Done"
- tcid: TCID-EC2-ANSIBLE-APP-DISK-FILL
name: "TCID-EC2-ANSIBLE-APP-DISK-FILL"
description: "Fill up Ephemeral Storage of a Pod"
labels:
test/feature: "Ansible-Experiment"
test/tags: "pod, ephemeral, disk"
git/location: ""
test/status: "Done"
- tcid: TCID-EC2-ANSIBLE-INFRA-NODE-CPU-HOG
name: "TCID-EC2-GENERIC-APP-NODE-CPU-HOG"
description: "Exhaust CPU resources on the Kubernetes Node"
labels:
test/feature: "Ansible-Experiment"
test/tags: "node, cpu, spike"
git/location: ""
test/status: "Done"
- tcid: TCID-EC2-ANSIBLE-INFRA-NODE-MEMORY-HOG
name: "TCID-EC2-ANSIBLE-INFRA-NODE-MEMORY-HOG"
description: "Exhaust Memory resources on the Kubernetes Node"
labels:
test/feature: "Ansible-Experiment"
test/tags: "node, memory, hog"
git/location: ""
test/status: "Done"
- tcid: TCID-EC2-ANSIBLE-INFRA-NODE-DRAIN
name: "TCID-EC2-ANSIBLE-INFRA-NODE-DRAIN"
description: "Drain the node where application pod is scheduled"
labels:
test/feature: "Ansible-Experiment"
test/tags: "node, drain"
git/location: ""
test/status: "Done"
- tcid: TCID-EC2-ANSIBLE-INFRA-KUBELET-SERVICE-KILL
name: "TCID-EC2-ANSIBLE-INFRA-KUBELET-SERVICE-KILL"
description: "Kills the kubelet service on the application node to check the resiliency"
labels:
test/feature: "Ansible-Experiment"
test/tags: "kubelet, service, kill"
git/location: ""
test/status: "Done"
- tcid: TCID-EC2-ANSIBLE-INFRA-DISK-LOSS
name: "TCID-EC2-ANSIBLE-INFRA-DISK-LOSS"
description: "External disk loss from the node"
labels:
test/feature: "Ansible-Experiment"
test/tags: "disk, loss"
git/location: ""
test/status: "Not Done"
# ----------------------------------------------------------
# LitmusChaos COMPONENT BDDs
# ----------------------------------------------------------
- tcid: TCID-EC2-GENERIC-OPERATOR-RECONCILE-RESILIENCY
name: "TCID-EC2-GENERIC-OPERATOR-RECONCILE-RESILIENCY"
description: "Tests the Reconcile Resiliency of Litmus Operator"
labels:
test/feature: "Generic"
test/tags: "operator, litmus, resiliency"
git/location: ""
test/status: "Done"
- tcid: TCID-EC2-GENERIC-OPERATOR-ADMIN-MODE
name: "TCID-EC2-GENERIC-OPERATOR-ADMIN-MODE"
description: "Test the admin mode functionality"
labels:
test/feature: "Generic"
test/tags: "admin-mode, operator, litmus"
git/location: ""
test/status: "Done"
- tcid: TCID-EC2-GENERIC-ENGINE-APP-INFO
name: "TCID-EC2-GENERIC-ENGINE-APP-INFO"
description: "Test the app info functionality of chaosengine"
labels:
test/feature: "Generic"
test/tags: "app-ns, app-label, app-type, app-info"
git/location: ""
test/status: "Done"
- tcid: TCID-EC2-GENERIC-ENGINE-SERVICE-ACCOUNT
name: "TCID-EC2-GENERIC-ENGINE-SERVICE-ACCOUNT"
description: "Test the service account field of chaosengine"
labels:
test/feature: "Generic"
test/tags: "service-account"
git/location: ""
test/status: "Done"
- tcid: TCID-EC2-GENERIC-ENGINE-ANNOTATION-CHECK
name: "TCID-EC2-GENERIC-ENGINE-ANNOTATION-CHECK"
description: "Test the annotation check functionality of chaosengine"
labels:
test/feature: "Generic"
test/tags: "annotation-check"
git/location: ""
test/status: "Done"
- tcid: TCID-EC2-GENERIC-ENGINE-EXPERIMENT-NAME
name: "TCID-EC2-GENERIC-ENGINE-EXPERIMENT-NAME"
description: "Test the experiment name field of chaosengine"
labels:
test/feature: "Generic"
test/tags: "experiment-name"
git/location: ""
test/status: "Done"
- tcid: TCID-EC2-GENERIC-ENGINE-ENGINE-STATE
name: "TCID-EC2-GENERIC-ENGINE-ENGINE-STATE"
description: "Test the abort functionality of chaosengine"
labels:
test/feature: "Generic"
git/location: ""
test/status: "Done"
- tcid: TCID-EC2-GENERIC-ENGINE-MONITORING
name: "TCID-EC2-GENERIC-ENGINE-MONITORING"
description: "Test the monitoring functionality of chaosengine"
labels:
test/feature: "Generic"
test/tags: "monitoring"
git/location: ""
test/status: "Not Done"
- tcid: TCID-EC2-GENERIC-ENGINE-ENV-VARIABLE
name: "TCID-EC2-GENERIC-ENGINE-ENV-VARIABLEY"
description: "Test the env variable field of chaosengine"
labels:
test/feature: "Generic"
test/tags: "env-variable-test"
git/location: ""
test/status: "Not Done"
- tcid: TCID-EC2-GENERIC-ENGINE-JOB-CLEANUP-POLICY
name: "TCID-EC2-GENERIC-ENGINE-JOB-CLEANUP-POLICY"
description: "Test the job cleanup policy functionality of chaosengine"
labels:
test/feature: "Generic"
test/tags: "job-cleanup-policy, retain, delete"
git/location: ""
test/status: "Done"
- tcid: TCID-EC2-GENERIC-EXPERIMENT-EXPERIMENT-IMAGE-NAME
name: "TCID-EC2-GENERIC-EXPERIMENT-EXPERIMENT-IMAGE-NAME"
description: "Test the experiment image name field of chaosexperiment"
labels:
test/feature: "Generic"
test/tags: "image-name, chaosexperiment"
git/location: ""
test/status: "Done"
- tcid: TCID-EC2-GENERIC-EXPERIMENT-ENV-VARIABLE
name: "TCID-EC2-GENERIC-EXPERIMENT-ENV-VARIABLE"
description: "Test the experiment env variable field of chaosexperiment"
labels:
test/feature: "Generic"
test/tags: "envs, chaosexperiment"
git/location: ""
test/status: "Not Done"
- tcid: TCID-EC2-GENERIC-EXPERIMENT-ENTRY-POINT
name: "TCID-EC2-GENERIC-EXPERIMENT-ENTERY-POINT"
description: "Test the experiment entry point field of chaosexperiment"
labels:
test/feature: "Generic"
test/tags: "entry-point, chaosexperiment"
git/location: ""
test/status: "Not Done"
- tcid: TCID-EC2-GENERIC-EXPERIMENT-TARGET-POD
name: "TCID-EC2-GENERIC-EXPERIMENT-TARGET-POD"
description: "Test the experiment with given target pod"
labels:
test/feature: "Generic"
test/tags: "target-pod, experiment"
git/location: ""
test/status: "Done"
- tcid: TCID-EC2-GENERIC-ENV-FROM-SECRET-AND-CONFIGMAP
name: "TCID-EC2-GENERIC-ENV-FROM-SECRET-AND-CONFIGMAP"
description: "Test the experiment with envs from secret and configmap"
labels:
test/feature: "Generic"
test/tags: "crds, validation,secrets,configmaps"
git/location: ""
test/status: "Done"
- tcid: TCID-EC2-GENERIC-RBAC-LESS-PERMISSION
name: "TCID-EC2-GENERIC-RBAC-LESS-PERMISSION"
description: "Test the experiment with less permission"
labels:
test/feature: "Generic"
test/tags: "rbac, permission"
git/location: ""
test/status: "Not Done"