blob: bb84044cb92f3b4cb393762213c2f7ed125c868a (
plain)
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
|
---
tiers:
-
name: infra-healthcheck
order: 1
ci_loop: '(daily)|(weekly)!(gating)'
description: >-
Set of basic k8s Functional tests to validate the ONAP installation.
testcases:
-
case_name: status
project_name: integration
criteria: 100
blocking: false
description: >-
This test case verifies that the ONAP pods are all Running
and shows the pods, deployments, svc and events.
New version of onap-k8s test (which is deprecated and will
be removed)
run:
name: 'status'
-
case_name: onap-helm
project_name: integration
criteria: 100
blocking: false
description: >-
This test case verifies that the ONAP charts are in
DEPLOYED status
run:
name: 'onap_helm'
-
case_name: nodeport_ingress
project_name: security
criteria: 100
blocking: false
description: >-
Check that there is no NodePort without corresponding
Ingress port
dependencies:
- DEPLOY_SCENARIO: 'ingress'
run:
name: 'nodeport_ingress'
-
case_name: nodeport_check_certs
project_name: integration
criteria: 100
blocking: false
description: >-
Check certificates associated with node ports
run:
name: 'nodeport_check_certs'
-
case_name: onap-chart
project_name: integration
criteria: 100
blocking: false
description: >-
This test case verifies that the ONAP pods are all Running
and shows the pods, deployments, svc and events for a
particular chart (SO, CLAMP, ...)
dependencies:
- DEPLOY_ENVIRONMENT: 'gating_component'
run:
name: 'onap_chart'
-
case_name: internal_check_certs
project_name: integration
criteria: 100
blocking: false
description: >-
Check certificates associated with internal ports
dependencies:
- TEST_ENVIRONMENT: 'internal_job'
run:
name: 'internal_check_certs'
|