blob: 64d9d72c88497fd73a1a64886e048635e1b7c577 [file] [log] [blame]
Matteo Scandolo51b76302020-02-05 12:07:23 -08001---
2# VOLTHA 2.x scale measurements
3
4- project:
5 name: voltha-scale
6
7 project-name: '{name}'
8
9 jobs:
Matteo Scandolo272aed42020-05-08 15:05:57 -070010 # name format is <job-template>-<olts>-<pon>-<onus>-<setup>
Matteo Scandolo3136cca2020-05-15 14:14:27 -070011
Matteo Scandolo8df57162020-10-06 14:43:53 -070012 # this job will be used to test custom images without disrupting tests on master
13 - 'voltha-scale-measurements':
14 name: 'voltha-scale-measurements-master-experimental'
Matteo Scandolobb31fc72021-03-16 17:09:46 -070015 build-node: 'voltha-scale-1'
Matteo Scandoloe6647a02020-11-02 10:27:52 -080016 # trigger on Feb 29th (a.k.a only trigger it manually)
17 time-trigger: "H 0 29 2 *"
Andrea Campanella642e5502020-11-19 19:47:02 +010018 withMonitoring: true
Matteo Scandolo0b5317e2021-03-16 16:44:14 -070019 olts: 1
Matteo Scandolo3329f402021-03-18 18:23:07 -070020 pons: 16
Matteo Scandolo8df57162020-10-06 14:43:53 -070021 onus: 32
22 withFlows: true
23 provisionSubscribers: true
24 withEapol: true
25 withDhcp: true
26 withIgmp: false
Matteo Scandolo28f4ec62021-07-07 17:45:21 -070027 extraHelmFlags: '--set authRetry=false,dhcpRetry=false'
Matteo Scandolo08d7d002020-11-20 17:37:56 -080028 withPcap: false
Matteo Scandolo9665d592020-10-23 19:08:14 +000029
Matteo Scandolo4b006ae2020-11-09 16:14:40 -080030 - 'voltha-scale-measurements':
31 name: 'voltha-scale-measurements-master-experimental-multi-stack'
Matteo Scandolobe823242020-11-20 13:48:13 -080032 build-node: 'voltha-scale-2'
Matteo Scandolo554bbee2021-06-29 10:31:58 +020033 pipeline-script: 'voltha/master/voltha-scale-multi-stack.groovy'
Matteo Scandolo4b006ae2020-11-09 16:14:40 -080034 # trigger on Feb 29th (a.k.a only trigger it manually)
Matteo Scandoloffe19c92020-11-24 15:25:25 -080035 time-trigger: "H 0 29 2 *"
Matteo Scandolod4d55b72020-11-25 12:29:07 -080036 withMonitoring: true
Matteo Scandolof7ca6312020-11-16 15:57:15 -080037 logLevel: WARN
Matteo Scandolo95f3bc12021-06-03 15:25:47 -070038 volthaStacks: 10
Matteo Scandolo4b006ae2020-11-09 16:14:40 -080039 olts: 2
Matteo Scandolo95f3bc12021-06-03 15:25:47 -070040 pons: 16
41 onus: 32
Matteo Scandolo4b006ae2020-11-09 16:14:40 -080042 withFlows: true
43 provisionSubscribers: true
Matteo Scandolof7ca6312020-11-16 15:57:15 -080044 workflow: dt
45 withEapol: false
46 withDhcp: false
Matteo Scandolo4b006ae2020-11-09 16:14:40 -080047 withIgmp: false
Matteo Scandoloa8684b82022-06-23 16:53:19 -070048 # extraHelmFlags: " -f /home/jenkins/voltha-scale/voltha-values.yaml --set etcd.persistence.enabled=false,etcd.persistence.storageClass=longhorn "
Matteo Scandolo4b006ae2020-11-09 16:14:40 -080049
Matteo Scandolofebf6512021-03-02 11:37:37 -080050 # jobs for 1024 ONUs with openonu-go and clustered ONOS (2 OLTs)
Matteo Scandolocb726432020-06-01 08:49:14 -070051 - 'voltha-scale-measurements':
Matteo Scandolod43064b2020-07-13 17:18:45 -070052 name: 'voltha-scale-measurements-master-2-16-32-att-subscribers'
Matteo Scandolo2d30c7d2021-02-25 15:39:51 -080053 build-node: 'voltha-scale-1'
Matteo Scandoloa6dc5a12020-06-04 16:51:29 -070054 time-trigger: "H H/4 * * *"
Matteo Scandolob1a50612022-06-23 16:09:39 -070055 disable-job: false
Matteo Scandoloa6dc5a12020-06-04 16:51:29 -070056 olts: 2
57 pons: 16
58 onus: 32
59 withFlows: true
60 provisionSubscribers: true
61 withEapol: true
62 withDhcp: true
63 withIgmp: false
Matteo Scandoloabd031a2022-06-28 13:18:49 -070064 extraHelmFlags: '--set authRetry=true,dhcpRetry=true --set voltha.securityContext.enabled=false -f /home/jenkins/voltha-scale/voltha-values.yaml --set etcd.persistence.enabled=false,etcd.persistence.storageClass=longhorn --set global.rpc_timeout=30s --set voltha.ofagent.log_level=DEBUG'
Matteo Scandolo8630f3d2022-06-27 11:55:54 -070065 onosReplicas: 1
66 atomixReplicas: 1
67 onosImg: andreacampanella/voltha-onos:extend-timeout
Matteo Scandolo878ea7b2022-06-27 16:21:03 -070068 ofAgentImg: matteoscandolo/voltha-ofagent-go:scale-debug
Matteo Scandolo7185dea2022-06-28 15:24:53 -070069 openoltAdapterImg: matteoscandolo/voltha-openolt-adapter:indications
Matteo Scandoloa6dc5a12020-06-04 16:51:29 -070070
Matteo Scandoloa6dc5a12020-06-04 16:51:29 -070071 - 'voltha-scale-measurements':
Hardik Windlass0e37a1c2022-01-31 10:35:57 +000072 name: 'voltha-scale-measurements-master-onu-upgrade-2-16-32-att-onus'
Hardik Windlass4a76e092022-01-28 11:51:55 +000073 build-node: 'voltha-scale-1'
74 time-trigger: "H H/12 * * *"
75 olts: 2
76 pons: 16
77 onus: 32
78 withOnuUpgrade: true
79 withFlows: true
80 provisionSubscribers: false
81 withEapol: false
82 withDhcp: false
83 withIgmp: false
Matteo Scandoloa8684b82022-06-23 16:53:19 -070084 extraHelmFlags: '--set authRetry=false,dhcpRetry=false -f /home/jenkins/voltha-scale/voltha-values.yaml --set etcd.persistence.enabled=false,etcd.persistence.storageClass=longhorn --set voltha-adapter-openonu.adapter_open_onu.omci_timeout=3s'
Hardik Windlass4a76e092022-01-28 11:51:55 +000085
86 - 'voltha-scale-measurements':
Matteo Scandolod43064b2020-07-13 17:18:45 -070087 name: 'voltha-scale-measurements-master-2-16-32-dt-subscribers'
Matteo Scandolo2d30c7d2021-02-25 15:39:51 -080088 build-node: 'voltha-scale-1'
Matteo Scandoloa6dc5a12020-06-04 16:51:29 -070089 time-trigger: "H H/4 * * *"
Matteo Scandolo8630f3d2022-06-27 11:55:54 -070090 disable-job: false
Matteo Scandoloa6dc5a12020-06-04 16:51:29 -070091 olts: 2
92 pons: 16
93 onus: 32
94 withFlows: true
95 provisionSubscribers: true
96 workflow: dt
97 withEapol: false
98 withDhcp: false
99 withIgmp: false
Matteo Scandolo878ea7b2022-06-27 16:21:03 -0700100 extraHelmFlags: '--set voltha.securityContext.enabled=false -f /home/jenkins/voltha-scale/voltha-values.yaml --set etcd.persistence.enabled=false,etcd.persistence.storageClass=longhorn'
Matteo Scandolo8630f3d2022-06-27 11:55:54 -0700101 onosReplicas: 1
102 atomixReplicas: 1
103 onosImg: andreacampanella/voltha-onos:extend-timeout
Matteo Scandolo878ea7b2022-06-27 16:21:03 -0700104 ofAgentImg: matteoscandolo/voltha-ofagent-go:scale-debug
Matteo Scandolo7185dea2022-06-28 15:24:53 -0700105 openoltAdapterImg: matteoscandolo/voltha-openolt-adapter:indications
Matteo Scandolo86939302020-10-30 13:32:08 -0700106
107 - 'voltha-scale-measurements':
108 name: 'voltha-scale-measurements-master-2-16-32-tt-subscribers'
Matteo Scandolo2d30c7d2021-02-25 15:39:51 -0800109 build-node: 'voltha-scale-1'
Matteo Scandolo86939302020-10-30 13:32:08 -0700110 time-trigger: "H H/4 * * *"
Matteo Scandoloa7fda432022-06-27 16:57:37 -0700111 disable-job: false
Matteo Scandolo86939302020-10-30 13:32:08 -0700112 olts: 2
113 pons: 16
114 onus: 32
115 withFlows: true
116 provisionSubscribers: true
117 workflow: tt
118 withEapol: false
119 withDhcp: true
120 withIgmp: true
Matteo Scandolo5629e6c2021-11-19 15:57:18 -0800121 extraHelmFlags: >
Matteo Scandolo878ea7b2022-06-27 16:21:03 -0700122 --set voltha.securityContext.enabled=false
Matteo Scandoloa8684b82022-06-23 16:53:19 -0700123 --set dhcpRetry=false -f /home/jenkins/voltha-scale/voltha-values.yaml --set etcd.persistence.enabled=false,etcd.persistence.storageClass=longhorn
Matteo Scandolo5629e6c2021-11-19 15:57:18 -0800124 --set global.rpc_timeout=30s,global.adapter_open_onu.timeout=30s,global.adapter_open_olt.timeout=30s,global.adapter_open_olt.rpc_timeout=30s
125 onosStatInterval: 30
126 onosGroupInterval: 30
Matteo Scandolo878ea7b2022-06-27 16:21:03 -0700127 onosReplicas: 1
128 atomixReplicas: 1
129 onosImg: andreacampanella/voltha-onos:extend-timeout
130 ofAgentImg: matteoscandolo/voltha-ofagent-go:scale-debug
Matteo Scandolo7185dea2022-06-28 15:24:53 -0700131 openoltAdapterImg: matteoscandolo/voltha-openolt-adapter:indications
Matteo Scandolo272aed42020-05-08 15:05:57 -0700132
Andrea Campanella5fb11d72022-02-02 11:05:42 +0100133 - 'voltha-scale-measurements':
Andrea Campanella3cd43ad2022-02-03 16:18:38 +0100134 name: 'voltha-scale-measurements-master-2-16-32-tt-subscribers-maclearner'
Andrea Campanella5fb11d72022-02-02 11:05:42 +0100135 build-node: 'voltha-scale-1'
136 time-trigger: "H H/4 * * *"
137 olts: 2
138 pons: 16
139 onus: 32
140 withFlows: true
141 provisionSubscribers: true
Andrea Campanella3cd43ad2022-02-03 16:18:38 +0100142 workflow: tt
143 withEapol: false
Andrea Campanella5fb11d72022-02-02 11:05:42 +0100144 withDhcp: true
Andrea Campanella3cd43ad2022-02-03 16:18:38 +0100145 withIgmp: true
Andrea Campanella7c3945f2022-02-07 17:19:30 +0100146 withMaclearning: true
Andrea Campanellade9139a2022-02-09 16:50:36 +0100147 testTimeout: 20
Andrea Campanella5fb11d72022-02-02 11:05:42 +0100148 onosReplicas: 3
149 atomixReplicas: 3
150 extraHelmFlags: >
Matteo Scandoloa8684b82022-06-23 16:53:19 -0700151 --set authRetry=false,dhcpRetry=false -f /home/jenkins/voltha-scale/voltha-values-tt.yaml --set etcd.persistence.enabled=false,etcd.persistence.storageClass=longhorn
Andrea Campanella5fb11d72022-02-02 11:05:42 +0100152 --set onos-classic.image.repository=andreacampanella/voltha-onos --set onos-classic.image.tag=maclearner
Andrea Campanella3cd43ad2022-02-03 16:18:38 +0100153 --set bbsim-sadis-server.images.bbsim_sadis_server.tag=master
Andrea Campanella5fb11d72022-02-02 11:05:42 +0100154
155
Andrea Campanellaadc2a922022-01-10 15:17:55 +0100156 # 4k ONTs jobs
157 - 'voltha-scale-measurements':
158 name: 'voltha-scale-measurements-master-2-64-32-dt-subscribers'
Andrea Campanellaadc2a922022-01-10 15:17:55 +0100159 build-node: 'voltha-scale-1'
160 time-trigger: "H H/4 * * *"
161 olts: 2
162 pons: 64
163 onus: 32
Elia Battiston4decc6b2022-02-25 10:22:56 +0100164 unis: 1
Andrea Campanellaadc2a922022-01-10 15:17:55 +0100165 withFlows: true
166 provisionSubscribers: true
167 workflow: dt
168 withEapol: false
169 withDhcp: false
170 withIgmp: false
Andrea Campanellad0c8fee2022-01-27 17:07:43 +0100171 onosImg: andreacampanella/voltha-onos:4k-dev
172 withMibTemplate: false
Matteo Scandolof9efcaf2022-06-22 15:49:04 -0700173 mibTemplateUrl: 'https://raw.githubusercontent.com/opencord/voltha-openonu-adapter-go/master/templates/BBSM-v0.0.1-BBSM_IMG_00001-v1-1UNI.json'
Matteo Scandoloa8684b82022-06-23 16:53:19 -0700174 extraHelmFlags: '-f /home/jenkins/voltha-scale/voltha-values.yaml --set etcd.persistence.enabled=false,etcd.persistence.storageClass=longhorn'
Andrea Campanellaadc2a922022-01-10 15:17:55 +0100175
Andrea Campanella518e6672022-01-17 11:42:53 +0100176 - 'voltha-scale-measurements':
Andrea Campanellabd91d932022-01-19 09:00:53 +0100177 name: 'voltha-scale-measurements-master-1-64-63-dt-subscribers'
Andrea Campanella518e6672022-01-17 11:42:53 +0100178 build-node: 'voltha-scale-1'
179 time-trigger: "H H/4 * * *"
180 olts: 1
181 pons: 64
Andrea Campanellabd91d932022-01-19 09:00:53 +0100182 onus: 63
Elia Battiston4decc6b2022-02-25 10:22:56 +0100183 unis: 1
Andrea Campanella518e6672022-01-17 11:42:53 +0100184 withFlows: true
185 provisionSubscribers: true
186 workflow: dt
187 withEapol: false
188 withDhcp: false
189 withIgmp: false
Andrea Campanella3cd43ad2022-02-03 16:18:38 +0100190 onosImg: andreacampanella/voltha-onos:4k-dev
191 withMibTemplate: false
Matteo Scandolof9efcaf2022-06-22 15:49:04 -0700192 mibTemplateUrl: 'https://raw.githubusercontent.com/opencord/voltha-openonu-adapter-go/master/templates/BBSM-v0.0.1-BBSM_IMG_00001-v1-1UNI.json'
Matteo Scandoloa8684b82022-06-23 16:53:19 -0700193 extraHelmFlags: '-f /home/jenkins/voltha-scale/voltha-values.yaml --set etcd.persistence.enabled=false,etcd.persistence.storageClass=longhorn -f /home/cord/dt-custom-values.yaml'
Andrea Campanella518e6672022-01-17 11:42:53 +0100194
Matteo Scandolo95f99682022-02-10 15:10:37 -0800195 - 'voltha-scale-measurements':
196 name: 'voltha-scale-measurements-master-1-64-63-tt-subscribers'
Matteo Scandolo95f99682022-02-10 15:10:37 -0800197 build-node: 'voltha-scale-1'
198 time-trigger: "H H/4 * * *"
199 olts: 1
200 pons: 64
201 onus: 63
Elia Battiston4decc6b2022-02-25 10:22:56 +0100202 unis: 1
Matteo Scandolo95f99682022-02-10 15:10:37 -0800203 withFlows: true
204 provisionSubscribers: true
205 workflow: tt
206 withEapol: false
Andrea Campanella3279ce42022-02-14 12:55:06 +0100207 withDhcp: true
208 withIgmp: true
Matteo Scandolo95f99682022-02-10 15:10:37 -0800209 onosImg: andreacampanella/voltha-onos:4k-dev
210 withMibTemplate: false
Matteo Scandolof9efcaf2022-06-22 15:49:04 -0700211 mibTemplateUrl: 'https://raw.githubusercontent.com/opencord/voltha-openonu-adapter-go/master/templates/BBSM-v0.0.1-BBSM_IMG_00001-v1-1UNI.json'
Matteo Scandoloa8684b82022-06-23 16:53:19 -0700212 extraHelmFlags: '-f /home/jenkins/voltha-scale/voltha-values.yaml --set etcd.persistence.enabled=false,etcd.persistence.storageClass=longhorn -f /home/cord/tt-custom-values.yaml'
Matteo Scandolo95f99682022-02-10 15:10:37 -0800213
Matteo Scandolo95d72a22020-11-25 11:14:09 -0800214 # multi-stack jobs
215 - 'voltha-scale-measurements':
Matteo Scandolod1430a72020-12-04 15:14:44 -0800216 name: 'voltha-scale-measurements-master-10-stacks-2-16-32-att-subscribers'
217 build-node: 'voltha-scale-2'
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800218 pipeline-script: 'voltha/master/voltha-scale-multi-stack.groovy'
Matteo Scandolo95d72a22020-11-25 11:14:09 -0800219 time-trigger: "H H/4 * * *"
Matteo Scandolo7ec783f2022-05-09 15:10:10 -0700220 disable-job: true
Matteo Scandolo95d72a22020-11-25 11:14:09 -0800221 logLevel: WARN
Matteo Scandolo6406fb32022-01-14 14:07:54 -0800222 onosReplicas: 1
223 atomixReplicas: 0
224 kafkaReplicas: 1
225 etcdReplicas: 1
Matteo Scandolod1430a72020-12-04 15:14:44 -0800226 volthaStacks: 10
Matteo Scandolo95d72a22020-11-25 11:14:09 -0800227 olts: 2
228 pons: 16
229 onus: 32
230 withFlows: true
231 provisionSubscribers: true
232 workflow: att
233 withEapol: true
234 withDhcp: true
235 withIgmp: false
Matteo Scandolo2ce69032022-01-18 14:33:48 -0800236 extraHelmFlags: "-f /home/jenkins/voltha-scale/voltha-values.yaml"
Matteo Scandolo95d72a22020-11-25 11:14:09 -0800237
238 - 'voltha-scale-measurements':
Matteo Scandolod1430a72020-12-04 15:14:44 -0800239 name: 'voltha-scale-measurements-master-10-stacks-2-16-32-dt-subscribers'
240 build-node: 'voltha-scale-2'
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800241 pipeline-script: 'voltha/master/voltha-scale-multi-stack.groovy'
Matteo Scandolo95d72a22020-11-25 11:14:09 -0800242 time-trigger: "H H/4 * * *"
Matteo Scandolo7ec783f2022-05-09 15:10:10 -0700243 disable-job: true
Matteo Scandolo95d72a22020-11-25 11:14:09 -0800244 logLevel: WARN
Matteo Scandolo6406fb32022-01-14 14:07:54 -0800245 onosReplicas: 1
246 atomixReplicas: 0
247 kafkaReplicas: 1
248 etcdReplicas: 1
Matteo Scandolod1430a72020-12-04 15:14:44 -0800249 volthaStacks: 10
Matteo Scandolo95d72a22020-11-25 11:14:09 -0800250 olts: 2
251 pons: 16
252 onus: 32
253 withFlows: true
254 provisionSubscribers: true
255 workflow: dt
256 withEapol: false
257 withDhcp: false
258 withIgmp: false
Matteo Scandolo2ce69032022-01-18 14:33:48 -0800259 extraHelmFlags: "-f /home/jenkins/voltha-scale/voltha-values.yaml"
Matteo Scandolo95d72a22020-11-25 11:14:09 -0800260
261 - 'voltha-scale-measurements':
Matteo Scandolod1430a72020-12-04 15:14:44 -0800262 name: 'voltha-scale-measurements-master-10-stacks-2-16-32-tt-subscribers'
263 build-node: 'voltha-scale-2'
Matteo Scandolo2bc660a2021-02-12 10:52:25 -0800264 pipeline-script: 'voltha/master/voltha-scale-multi-stack.groovy'
Matteo Scandolo95d72a22020-11-25 11:14:09 -0800265 time-trigger: "H H/4 * * *"
Matteo Scandolo7ec783f2022-05-09 15:10:10 -0700266 disable-job: true
Matteo Scandolo95d72a22020-11-25 11:14:09 -0800267 logLevel: WARN
Matteo Scandolo6406fb32022-01-14 14:07:54 -0800268 onosReplicas: 1
269 atomixReplicas: 0
270 kafkaReplicas: 1
271 etcdReplicas: 1
Matteo Scandolod1430a72020-12-04 15:14:44 -0800272 volthaStacks: 10
Matteo Scandolo95d72a22020-11-25 11:14:09 -0800273 olts: 2
274 pons: 16
275 onus: 32
276 withFlows: true
277 provisionSubscribers: true
278 workflow: tt
279 withEapol: false
280 withDhcp: true
281 withIgmp: true
Matteo Scandolo2ce69032022-01-18 14:33:48 -0800282 extraHelmFlags: "-f /home/jenkins/voltha-scale/voltha-values.yaml"
Matteo Scandolo95d72a22020-11-25 11:14:09 -0800283
Hardik Windlass6d9a82e2021-07-08 16:23:21 +0000284 # voltha-2.8 Jobs
Matteo Scandolod43064b2020-07-13 17:18:45 -0700285 - 'voltha-scale-measurements':
Hardik Windlass6d9a82e2021-07-08 16:23:21 +0000286 name: 'voltha-scale-measurements-voltha-2.8-2-16-32-att-subscribers'
Hardik Windlass6d9a82e2021-07-08 16:23:21 +0000287 pipeline-script: 'voltha/voltha-2.8/voltha-scale-test.groovy'
Matteo Scandolo2d30c7d2021-02-25 15:39:51 -0800288 build-node: 'voltha-scale-1'
Matteo Scandolod43064b2020-07-13 17:18:45 -0700289 time-trigger: "H H/4 * * *"
Matteo Scandolofed6bab2021-03-31 14:19:57 -0700290 olts: 2
Matteo Scandolod43064b2020-07-13 17:18:45 -0700291 pons: 16
292 onus: 32
293 withFlows: true
294 provisionSubscribers: true
295 withEapol: true
296 withDhcp: true
297 withIgmp: false
Hardik Windlass6d9a82e2021-07-08 16:23:21 +0000298 release: voltha-2.8
Andrea Campanella188e50d2022-01-14 11:30:05 +0100299 karaf-home: 'apache-karaf-4.2.9'
Andrea Campanellabc5ee952021-04-30 10:47:54 +0200300 bbsimImg: ''
Matteo Scandoloca097652020-08-14 09:49:23 -0700301 rwCoreImg: ''
Matteo Scandolob10be9a2020-08-04 13:55:59 -0700302 ofAgentImg: ''
Matteo Scandoloca097652020-08-14 09:49:23 -0700303 openoltAdapterImg: ''
Matteo Scandolob10be9a2020-08-04 13:55:59 -0700304 openonuAdapterImg: ''
Matteo Scandoloebe4f722021-02-04 09:53:07 -0800305 openonuAdapterGoImg: ''
Andrea Campanellab7ecc302020-08-12 15:34:33 +0200306 onosImg: ''
Matteo Scandoloa8684b82022-06-23 16:53:19 -0700307 extraHelmFlags: "--set authRetry=false,dhcpRetry=false -f /home/jenkins/voltha-scale/voltha-values.yaml --set etcd.persistence.enabled=false,etcd.persistence.storageClass=longhorn"
Matteo Scandolod43064b2020-07-13 17:18:45 -0700308
309 - 'voltha-scale-measurements':
Hardik Windlass6d9a82e2021-07-08 16:23:21 +0000310 name: 'voltha-scale-measurements-voltha-2.8-2-16-32-dt-subscribers'
Hardik Windlass6d9a82e2021-07-08 16:23:21 +0000311 pipeline-script: 'voltha/voltha-2.8/voltha-scale-test.groovy'
Matteo Scandolo2d30c7d2021-02-25 15:39:51 -0800312 build-node: 'voltha-scale-1'
Matteo Scandolod43064b2020-07-13 17:18:45 -0700313 time-trigger: "H H/4 * * *"
314 olts: 2
315 pons: 16
316 onus: 32
317 withFlows: true
318 provisionSubscribers: true
319 workflow: dt
320 withEapol: false
321 withDhcp: false
322 withIgmp: false
Hardik Windlass6d9a82e2021-07-08 16:23:21 +0000323 release: voltha-2.8
Andrea Campanella188e50d2022-01-14 11:30:05 +0100324 karaf-home: 'apache-karaf-4.2.9'
Andrea Campanellabc5ee952021-04-30 10:47:54 +0200325 bbsimImg: ''
Matteo Scandoloca097652020-08-14 09:49:23 -0700326 rwCoreImg: ''
Matteo Scandolob10be9a2020-08-04 13:55:59 -0700327 ofAgentImg: ''
Matteo Scandoloca097652020-08-14 09:49:23 -0700328 openoltAdapterImg: ''
Matteo Scandolob10be9a2020-08-04 13:55:59 -0700329 openonuAdapterImg: ''
Matteo Scandoloebe4f722021-02-04 09:53:07 -0800330 openonuAdapterGoImg: ''
Andrea Campanella355795d2022-01-05 09:55:45 +0100331 onosImg: 'voltha/voltha-onos:5.0.4'
Matteo Scandoloa8684b82022-06-23 16:53:19 -0700332 extraHelmFlags: "-f /home/jenkins/voltha-scale/voltha-values.yaml --set etcd.persistence.enabled=false,etcd.persistence.storageClass=longhorn"
Matteo Scandolob2f814a2020-07-15 10:01:11 -0700333
Matteo Scandolo031bd982020-09-16 10:03:47 -0700334 - 'voltha-scale-measurements':
Hardik Windlass6d9a82e2021-07-08 16:23:21 +0000335 name: 'voltha-scale-measurements-voltha-2.8-2-16-32-tt-subscribers'
Hardik Windlass6d9a82e2021-07-08 16:23:21 +0000336 pipeline-script: 'voltha/voltha-2.8/voltha-scale-test.groovy'
Matteo Scandolo2d30c7d2021-02-25 15:39:51 -0800337 build-node: 'voltha-scale-1'
Matteo Scandolo031bd982020-09-16 10:03:47 -0700338 time-trigger: "H H/4 * * *"
Matteo Scandolofed6bab2021-03-31 14:19:57 -0700339 olts: 2
Matteo Scandolo031bd982020-09-16 10:03:47 -0700340 pons: 16
341 onus: 32
342 withFlows: true
343 provisionSubscribers: true
344 workflow: tt
345 withEapol: false
346 withDhcp: true
347 withIgmp: true
Hardik Windlass6d9a82e2021-07-08 16:23:21 +0000348 release: voltha-2.8
Andrea Campanella188e50d2022-01-14 11:30:05 +0100349 karaf-home: 'apache-karaf-4.2.9'
Andrea Campanellabc5ee952021-04-30 10:47:54 +0200350 bbsimImg: ''
Matteo Scandolo031bd982020-09-16 10:03:47 -0700351 rwCoreImg: ''
352 ofAgentImg: ''
353 openoltAdapterImg: ''
354 openonuAdapterImg: ''
Matteo Scandoloebe4f722021-02-04 09:53:07 -0800355 openonuAdapterGoImg: ''
Matteo Scandolo031bd982020-09-16 10:03:47 -0700356 onosImg: ''
Matteo Scandoloa8684b82022-06-23 16:53:19 -0700357 extraHelmFlags: "--set dhcpRetry=false -f /home/jenkins/voltha-scale/voltha-values.yaml --set etcd.persistence.enabled=false,etcd.persistence.storageClass=longhorn"
Matteo Scandolo031bd982020-09-16 10:03:47 -0700358
Matteo Scandoloc11b0ad2021-07-13 10:55:08 -0700359 # 2.8 multi-stack jobs
Andrea Campanella27b5a662020-12-18 18:49:26 +0100360 - 'voltha-scale-measurements':
Matteo Scandoloc11b0ad2021-07-13 10:55:08 -0700361 name: 'voltha-scale-measurements-2.8-10-stacks-2-16-32-att-subscribers'
Andrea Campanella27b5a662020-12-18 18:49:26 +0100362 build-node: 'voltha-scale-2'
Matteo Scandolo5e7bd1d2021-07-16 13:29:42 -0700363 pipeline-script: 'voltha/voltha-2.8/voltha-scale-multi-stack.groovy'
Andrea Campanella27b5a662020-12-18 18:49:26 +0100364 time-trigger: "H H/4 * * *"
Matteo Scandolo7ec783f2022-05-09 15:10:10 -0700365 disable-job: true
Andrea Campanella27b5a662020-12-18 18:49:26 +0100366 withMonitoring: false
367 logLevel: WARN
Matteo Scandolo6406fb32022-01-14 14:07:54 -0800368 onosReplicas: 1
369 atomixReplicas: 0
370 kafkaReplicas: 1
371 etcdReplicas: 1
Andrea Campanella27b5a662020-12-18 18:49:26 +0100372 volthaStacks: 10
373 olts: 2
374 pons: 16
375 onus: 32
376 withFlows: true
377 provisionSubscribers: true
Matteo Scandoloc11b0ad2021-07-13 10:55:08 -0700378 release: voltha-2.8
Andrea Campanella188e50d2022-01-14 11:30:05 +0100379 karaf-home: 'apache-karaf-4.2.9'
Andrea Campanella27b5a662020-12-18 18:49:26 +0100380 workflow: att
381 withEapol: true
382 withDhcp: true
383 withIgmp: false
Matteo Scandolo57b244a2021-02-24 15:26:51 -0800384 bbsimImg: ''
385 rwCoreImg: ''
386 ofAgentImg: ''
387 openoltAdapterImg: ''
388 openonuAdapterImg: ''
389 openonuAdapterGoImg: ''
Andrea Campanella355795d2022-01-05 09:55:45 +0100390 onosImg: 'voltha/voltha-onos:5.0.4'
Matteo Scandolo529e8822021-07-21 10:20:18 -0700391 extraHelmFlags: "-f /home/jenkins/voltha-scale/voltha-values.yaml "
Andrea Campanella27b5a662020-12-18 18:49:26 +0100392
393 - 'voltha-scale-measurements':
Matteo Scandoloc11b0ad2021-07-13 10:55:08 -0700394 name: 'voltha-scale-measurements-2.8-10-stacks-2-16-32-dt-subscribers'
Andrea Campanella27b5a662020-12-18 18:49:26 +0100395 build-node: 'voltha-scale-2'
Matteo Scandolo5e7bd1d2021-07-16 13:29:42 -0700396 pipeline-script: 'voltha/voltha-2.8/voltha-scale-multi-stack.groovy'
Andrea Campanella27b5a662020-12-18 18:49:26 +0100397 time-trigger: "H H/4 * * *"
Matteo Scandolo7ec783f2022-05-09 15:10:10 -0700398 disable-job: true
Andrea Campanella27b5a662020-12-18 18:49:26 +0100399 withMonitoring: false
400 logLevel: WARN
Matteo Scandolo6406fb32022-01-14 14:07:54 -0800401 onosReplicas: 1
402 atomixReplicas: 0
403 kafkaReplicas: 1
404 etcdReplicas: 1
Andrea Campanella27b5a662020-12-18 18:49:26 +0100405 volthaStacks: 10
406 olts: 2
407 pons: 16
408 onus: 32
409 withFlows: true
410 provisionSubscribers: true
Matteo Scandoloc11b0ad2021-07-13 10:55:08 -0700411 release: voltha-2.8
Andrea Campanella188e50d2022-01-14 11:30:05 +0100412 karaf-home: 'apache-karaf-4.2.9'
Andrea Campanella27b5a662020-12-18 18:49:26 +0100413 workflow: dt
414 withEapol: false
415 withDhcp: false
416 withIgmp: false
Matteo Scandolo57b244a2021-02-24 15:26:51 -0800417 bbsimImg: ''
418 rwCoreImg: ''
419 ofAgentImg: ''
420 openoltAdapterImg: ''
421 openonuAdapterImg: ''
422 openonuAdapterGoImg: ''
423 onosImg: ''
Matteo Scandolo529e8822021-07-21 10:20:18 -0700424 extraHelmFlags: "-f /home/jenkins/voltha-scale/voltha-values.yaml "
Andrea Campanella27b5a662020-12-18 18:49:26 +0100425
426 - 'voltha-scale-measurements':
Matteo Scandoloc11b0ad2021-07-13 10:55:08 -0700427 name: 'voltha-scale-measurements-2.8-10-stacks-2-16-32-tt-subscribers'
Andrea Campanella27b5a662020-12-18 18:49:26 +0100428 build-node: 'voltha-scale-2'
Matteo Scandolo5e7bd1d2021-07-16 13:29:42 -0700429 pipeline-script: 'voltha/voltha-2.8/voltha-scale-multi-stack.groovy'
Andrea Campanella27b5a662020-12-18 18:49:26 +0100430 time-trigger: "H H/4 * * *"
Matteo Scandolo7ec783f2022-05-09 15:10:10 -0700431 disable-job: true
Andrea Campanella27b5a662020-12-18 18:49:26 +0100432 withMonitoring: false
433 logLevel: WARN
Matteo Scandolo6406fb32022-01-14 14:07:54 -0800434 onosReplicas: 1
435 atomixReplicas: 0
436 kafkaReplicas: 1
437 etcdReplicas: 1
Andrea Campanella27b5a662020-12-18 18:49:26 +0100438 volthaStacks: 10
439 olts: 2
440 pons: 16
441 onus: 32
442 withFlows: true
443 provisionSubscribers: true
Matteo Scandoloc11b0ad2021-07-13 10:55:08 -0700444 release: voltha-2.8
Andrea Campanella188e50d2022-01-14 11:30:05 +0100445 karaf-home: 'apache-karaf-4.2.9'
Andrea Campanella27b5a662020-12-18 18:49:26 +0100446 workflow: tt
447 withEapol: false
448 withDhcp: true
449 withIgmp: true
Matteo Scandolo57b244a2021-02-24 15:26:51 -0800450 bbsimImg: ''
451 rwCoreImg: ''
452 ofAgentImg: ''
453 openoltAdapterImg: ''
454 openonuAdapterImg: ''
455 openonuAdapterGoImg: ''
456 onosImg: ''
Matteo Scandolo529e8822021-07-21 10:20:18 -0700457 extraHelmFlags: "-f /home/jenkins/voltha-scale/voltha-values.yaml "
Andrea Campanella27b5a662020-12-18 18:49:26 +0100458
Matteo Scandolo9cdacc52020-10-21 14:54:06 -0700459 # per patchset job
460 - 'voltha-scale-measurements':
461 name: 'voltha-scale-measurements-patchset-1-16-32-att-subscribers'
Matteo Scandolo2d30c7d2021-02-25 15:39:51 -0800462 build-node: 'voltha-scale-1'
Matteo Scandolo9cdacc52020-10-21 14:54:06 -0700463 olts: 1
464 pons: 16
465 onus: 32
466 withFlows: true
467 provisionSubscribers: true
468 withEapol: true
469 withDhcp: true
470 withIgmp: false
471 withMonitoring: false
472 trigger-comment: "voltha scale test ATT"
473
474 - 'voltha-scale-measurements':
475 name: 'voltha-scale-measurements-patchset-1-16-32-tt-subscribers'
Matteo Scandolo2d30c7d2021-02-25 15:39:51 -0800476 build-node: 'voltha-scale-1'
Matteo Scandolo9cdacc52020-10-21 14:54:06 -0700477 olts: 1
478 pons: 16
479 onus: 32
480 withFlows: true
481 provisionSubscribers: true
482 workflow: tt
483 withEapol: false
484 withDhcp: true
485 withIgmp: true
486 withMonitoring: false
487 trigger-comment: "voltha scale test TT"
488
489 - 'voltha-scale-measurements':
490 name: 'voltha-scale-measurements-patchset-1-16-32-dt-subscribers'
Matteo Scandolo2d30c7d2021-02-25 15:39:51 -0800491 build-node: 'voltha-scale-1'
Matteo Scandolo9cdacc52020-10-21 14:54:06 -0700492 olts: 1
493 pons: 16
494 onus: 32
495 withFlows: true
496 provisionSubscribers: true
497 workflow: dt
498 withEapol: false
499 withDhcp: false
500 withIgmp: false
501 withMonitoring: false
502 trigger-comment: "voltha scale test DT"
503
Matteo Scandolo633a2eb2022-03-28 08:26:17 -0700504 # LWC pipeline
505 - 'voltha-scale-measurements':
Matteo Scandolo4e111d42022-05-09 16:07:58 -0700506 name: 'voltha-scale-measurements-lwc-dt-512'
Matteo Scandolo633a2eb2022-03-28 08:26:17 -0700507 pipeline-script: 'voltha/master/voltha-scale-lwc-test.groovy'
Matteo Scandolo7ec783f2022-05-09 15:10:10 -0700508 build-node: 'berlin-community-pod-2'
509 time-trigger: "H H * * *"
Girish Gowdrae46b4b92022-05-18 15:23:38 -0700510 disable-job: true
Matteo Scandolo633a2eb2022-03-28 08:26:17 -0700511 withMonitoring: true
512 olts: 1
513 pons: 16
514 onus: 32
515 withFlows: true
516 provisionSubscribers: true
517 withEapol: false
518 withDhcp: false
519 withIgmp: false
520 extraHelmFlags: '--set authRetry=false,dhcpRetry=false'
521 workflow: dt
Matteo Scandoloe133ae52022-03-28 15:41:13 -0700522 volthaSystemTestsChange: refs/changes/10/31810/6
Matteo Scandolo633a2eb2022-03-28 08:26:17 -0700523
Matteo Scandolo4e111d42022-05-09 16:07:58 -0700524 - 'voltha-scale-measurements':
525 name: 'voltha-scale-measurements-lwc-dt-256'
526 pipeline-script: 'voltha/master/voltha-scale-lwc-test.groovy'
527 build-node: 'berlin-community-pod-2'
528 time-trigger: "H H * * *"
Girish Gowdrae46b4b92022-05-18 15:23:38 -0700529 disable-job: true
Matteo Scandolo4e111d42022-05-09 16:07:58 -0700530 withMonitoring: true
531 olts: 1
532 pons: 16
533 onus: 16
534 withFlows: true
535 provisionSubscribers: true
536 withEapol: false
537 withDhcp: false
538 withIgmp: false
539 extraHelmFlags: '--set authRetry=false,dhcpRetry=false'
540 workflow: dt
541 volthaSystemTestsChange: refs/changes/10/31810/6
542
Matteo Scandolo5fec8022020-08-27 17:29:35 -0700543
Matteo Scandoloe931c1c2020-08-13 15:39:30 -0700544# list of parameters for the VOLTHA Jobs,
545# used as anchor so that can be shared across multiple jobs
Matteo Scandolo9b644ba2021-04-19 11:21:07 -0700546# to use in a job: `parameters: *voltha-scale-job-parameters`
Matteo Scandoloe931c1c2020-08-13 15:39:30 -0700547- voltha-scale-job-parameters: &voltha-scale-job-parameters
548 name: voltha-scale-job-parameters
Matteo Scandolo272aed42020-05-08 15:05:57 -0700549 parameters:
550 - string:
Matteo Scandolo4b006ae2020-11-09 16:14:40 -0800551 name: pipeline-script
552 default: '{pipeline-script}'
553 description: 'The pipeline script to use'
554
555 - string:
Matteo Scandolod43064b2020-07-13 17:18:45 -0700556 name: release
557 default: '{release}'
Matteo Scandolo49bc0472021-04-20 09:37:55 -0700558 description: 'Version of the code to test (matches a branch in voltha-helm-charts and voltha-system-tests repos)'
Matteo Scandolod43064b2020-07-13 17:18:45 -0700559
560 - string:
Matteo Scandolo272aed42020-05-08 15:05:57 -0700561 name: buildNode
562 default: '{build-node}'
563 description: 'Name of the Jenkins node to run the job on'
564
565 - string:
Matteo Scandolo9cdacc52020-10-21 14:54:06 -0700566 name: dockerRegistry
567 default: '{dockerRegistry}'
568 description: 'Address of the docker registry to use if we are building custom images'
569
570 - string:
Matteo Scandolo272aed42020-05-08 15:05:57 -0700571 name: logLevel
Matteo Scandolo7efda2d2020-07-31 16:02:13 -0700572 default: '{logLevel}'
Matteo Scandolo272aed42020-05-08 15:05:57 -0700573 description: 'Log level for all the components'
574
575 - string:
Matteo Scandolo4b006ae2020-11-09 16:14:40 -0800576 name: volthaStacks
577 default: '{volthaStacks}'
578 description: 'Number of VOLTHA Stacks to deploy'
579
580 - string:
Elia Battiston4decc6b2022-02-25 10:22:56 +0100581 name: unis
582 default: '{unis}'
583 description: 'Number of UNIs to provision'
584
585 - string:
Matteo Scandolo272aed42020-05-08 15:05:57 -0700586 name: onus
Matteo Scandolo393add12020-05-08 18:03:17 -0700587 default: '{onus}'
Matteo Scandolo272aed42020-05-08 15:05:57 -0700588 description: 'Number of ONUs to provision'
589
590 - string:
591 name: pons
Matteo Scandolo393add12020-05-08 18:03:17 -0700592 default: '{pons}'
Matteo Scandolo272aed42020-05-08 15:05:57 -0700593 description: 'Number of PONs to provision'
594
595 - string:
596 name: olts
Matteo Scandolo393add12020-05-08 18:03:17 -0700597 default: '{olts}'
Matteo Scandolo272aed42020-05-08 15:05:57 -0700598 description: 'How many BBSim instances to run'
599
600 - string:
601 name: workflow
Matteo Scandolo393add12020-05-08 18:03:17 -0700602 default: '{workflow}'
Matteo Scandolo272aed42020-05-08 15:05:57 -0700603 description: 'Which workflow are we testing (att, dt, tt)'
604
605 - bool:
Hardik Windlass4a76e092022-01-28 11:51:55 +0000606 name: withOnuUpgrade
607 default: '{withOnuUpgrade}'
608 description: 'Whether to run the ONU Upgrade test'
609
610 - bool:
Matteo Scandolo272aed42020-05-08 15:05:57 -0700611 name: withFlows
Matteo Scandolo393add12020-05-08 18:03:17 -0700612 default: '{withFlows}'
Hardik Windlass4a76e092022-01-28 11:51:55 +0000613 description: 'Whether to push flows from ONOS'
Matteo Scandolo272aed42020-05-08 15:05:57 -0700614
615 - bool:
616 name: provisionSubscribers
Matteo Scandolo393add12020-05-08 18:03:17 -0700617 default: '{provisionSubscribers}'
Hardik Windlass4a76e092022-01-28 11:51:55 +0000618 description: 'Whether to provision subscribers during the tests'
Matteo Scandolo272aed42020-05-08 15:05:57 -0700619
620 - bool:
621 name: withEapol
Matteo Scandolo393add12020-05-08 18:03:17 -0700622 default: '{withEapol}'
Hardik Windlass4a76e092022-01-28 11:51:55 +0000623 description: 'Whether EAPOL is enabled for the test'
Matteo Scandolo272aed42020-05-08 15:05:57 -0700624
625 - bool:
626 name: withDhcp
Matteo Scandolo393add12020-05-08 18:03:17 -0700627 default: '{withDhcp}'
Hardik Windlass4a76e092022-01-28 11:51:55 +0000628 description: 'Whether DHCP is enabled for the test'
Matteo Scandolo272aed42020-05-08 15:05:57 -0700629
630 - bool:
631 name: withIgmp
Matteo Scandolo393add12020-05-08 18:03:17 -0700632 default: '{withIgmp}'
Hardik Windlass4a76e092022-01-28 11:51:55 +0000633 description: 'Whether IGMP is enabled for the test'
Matteo Scandolo272aed42020-05-08 15:05:57 -0700634
635 - bool:
Andrea Campanella7c3945f2022-02-07 17:19:30 +0100636 name: withMaclearning
637 default: '{withMaclearning}'
638 description: 'Whether mac learning is enabled for the test'
639
640 - bool:
Matteo Scandolo272aed42020-05-08 15:05:57 -0700641 name: withLLDP
Matteo Scandolo393add12020-05-08 18:03:17 -0700642 default: '{withLLDP}'
Hardik Windlass4a76e092022-01-28 11:51:55 +0000643 description: 'Whether Link Discovery is enabled for the test'
Matteo Scandolo272aed42020-05-08 15:05:57 -0700644
645 - bool:
Matteo Scandolo272aed42020-05-08 15:05:57 -0700646 name: withMonitoring
Matteo Scandolo393add12020-05-08 18:03:17 -0700647 default: '{withMonitoring}'
Matteo Scandolo272aed42020-05-08 15:05:57 -0700648 description: 'Option to install Prometheus'
649
Matteo Scandoloa731f8f2020-05-11 10:27:26 -0700650 - bool:
651 name: withProfiling
652 default: '{withProfiling}'
653 description: 'Option to collect profiling informations from rw-core and openolt (note that the appropriate -profile images needs to be used)'
654
Matteo Scandoloc9dd44f2020-06-18 15:06:04 -0700655 - bool:
656 name: withPcap
657 default: '{withPcap}'
658 description: 'Capture a .pcap on the OpenFlow connection from the ofAgent side'
659
Matteo Scandoloa731f8f2020-05-11 10:27:26 -0700660 - string:
Matteo Scandolo9e8c2a32020-10-13 18:02:33 -0700661 name: withRadius
662 default: '{withRadius}'
663 description: 'Value to pass to kind-voltha WITH_RADIUS'
664
665 - string:
Matteo Scandoloa731f8f2020-05-11 10:27:26 -0700666 name: extraHelmFlags
667 default: '{extraHelmFlags}'
Matteo Scandolo1c5ffab2020-07-17 08:53:01 -0700668 description: 'Any extra helm parameters you want (passed to every helm install command, not available if release != master)'
Matteo Scandoloa731f8f2020-05-11 10:27:26 -0700669
Matteo Scandolo272aed42020-05-08 15:05:57 -0700670 - string:
671 name: openonuAdapterReplicas
Matteo Scandolo393add12020-05-08 18:03:17 -0700672 default: '{openonuAdapterReplicas}'
Matteo Scandolo272aed42020-05-08 15:05:57 -0700673 description: 'How many OpenONU adapter instances to run'
674
675 - string:
676 name: onosReplicas
Matteo Scandolo393add12020-05-08 18:03:17 -0700677 default: '{onosReplicas}'
Matteo Scandolo272aed42020-05-08 15:05:57 -0700678 description: 'How many ONOSes instances to run'
679
680 - string:
681 name: atomixReplicas
Matteo Scandolo393add12020-05-08 18:03:17 -0700682 default: '{atomixReplicas}'
Matteo Scandolo272aed42020-05-08 15:05:57 -0700683 description: 'How many Atomix instances to run'
684
685 - string:
Matteo Scandolo7d6695c2020-08-25 13:13:16 -0700686 name: kafkaReplicas
687 default: '{kafkaReplicas}'
688 description: 'How many Kafka instances to run'
689
690 - string:
691 name: etcdReplicas
692 default: '{etcdReplicas}'
693 description: 'How many ETCD instances to run'
694
695 - string:
Matteo Scandolo3136cca2020-05-15 14:14:27 -0700696 name: onosStatInterval
697 default: '{onosStatInterval}'
698 description: 'How often ONOS should poll for ports, flows and meters'
699
700 - string:
Andrea Campanella15f22942021-04-08 17:24:21 +0200701 name: onosGroupInterval
702 default: '{onosGroupInterval}'
703 description: 'How often ONOS should poll for groups'
704
705 - string:
Andrea Campanella55f0f0e2021-04-15 18:50:54 +0200706 name: flowObjWorkerThreads
707 default: '{flowObjWorkerThreads}'
708 description: 'How many threads are used by the FlowObjectiveManager worker pool'
709
710 - string:
Matteo Scandolo272aed42020-05-08 15:05:57 -0700711 name: bbsimImg
712 default: '{bbsimImg}'
713 description: 'Custom image selection for BBSIM (repo:tag)'
714
715 - string:
Matteo Scandolo272aed42020-05-08 15:05:57 -0700716 name: rwCoreImg
717 default: '{rwCoreImg}'
718 description: 'Custom image selection for VOLTHA (repo:tag)'
719
720 - string:
721 name: ofAgentImg
722 default: '{ofAgentImg}'
723 description: 'Custom image selection for OfAgent (repo:tag), only supports the go version'
724
725 - string:
Matteo Scandolo272aed42020-05-08 15:05:57 -0700726 name: openoltAdapterImg
727 default: '{openoltAdapterImg}'
728 description: 'Custom image selection for Openolt Adapter (repo:tag)'
729
730 - string:
Matteo Scandolo272aed42020-05-08 15:05:57 -0700731 name: openonuAdapterImg
732 default: '{openonuAdapterImg}'
733 description: 'Custom image selection for Openonu Adapter (repo:tag)'
734
735 - string:
Andrea Campanella28763082020-11-18 10:55:31 +0100736 name: openonuAdapterGoImg
737 default: '{openonuAdapterGoImg}'
738 description: 'Custom image selection for Openonu Go Adapter (repo:tag)'
739
740 - string:
Matteo Scandolo272aed42020-05-08 15:05:57 -0700741 name: onosImg
742 default: '{onosImg}'
743 description: 'Custom image selection for Openonu Adapter (repo:tag)'
744
745 - string:
746 name: volthaSystemTestsChange
Matteo Scandolofae22812020-06-03 15:02:27 -0700747 default: '{volthaSystemTestsChange}'
Matteo Scandolo272aed42020-05-08 15:05:57 -0700748 description: 'Download a change for gerrit in the voltha-system-tests repo, example value: "refs/changes/79/18779/13"'
749
Matteo Scandolo5708e2f2020-06-03 14:11:32 -0700750 - string:
Matteo Scandolo11311742021-01-25 13:56:22 -0800751 name: volthaHelmChartsChange
752 default: '{volthaHelmChartsChange}'
Matteo Scandolod82d1de2021-04-06 14:55:58 -0700753 description: 'Download a change for gerrit in the voltha-helm-charts repo, example value: "refs/changes/32/19132/1"'
Matteo Scandolo5708e2f2020-06-03 14:11:32 -0700754
Matteo Scandoloccc06192020-06-22 10:16:17 -0700755 - bool:
756 name: inMemoryEtcdStorage
757 default: '{inMemoryEtcdStorage}'
Matteo Scandolo2699c432020-06-22 15:47:05 -0700758 description: 'Whether to write ETCD keys on disk or keep them in memory (true=inMemory)'
Matteo Scandoloccc06192020-06-22 10:16:17 -0700759
Andrea Campanellaa81c7dc2020-07-17 16:26:12 +0200760 - string:
761 name: karafHome
Matteo Scandoloa23f5c62020-07-29 20:07:29 -0700762 default: '{karafHome}'
Andrea Campanellaa81c7dc2020-07-17 16:26:12 +0200763 description: 'Karaf home'
764
Andrea Campanellade9139a2022-02-09 16:50:36 +0100765 - string:
766 name: testTimeout
767 default: '{testTimeout}'
768 description: 'How long the scale test can run for in minutes, e.g 10, 15'
769
Matteo Scandolo001003e2021-02-03 15:39:26 -0800770 # remove once voltha-2.6 is deprecated
771 - string:
772 name: kindVolthaChange
773 default: '{kindVolthaChange}'
774 description: 'Download a change for gerrit in the kind-voltha repo, example value: "refs/changes/32/19132/1"'
Matteo Scandolo90c5ccc2021-02-26 13:53:14 -0800775 - bool:
776 name: withMibTemplate
Andrea Campanellac8720d62022-01-28 10:03:32 +0100777 default: '{withMibTemplate}'
Matteo Scandolo001003e2021-02-03 15:39:26 -0800778
Elia Battiston4decc6b2022-02-25 10:22:56 +0100779 - string:
780 name: mibTemplateUrl
781 default: '{mibTemplateUrl}'
782 description: 'URL of the MIB template file to use, if "withMibTemplate" is selected'
783
Matteo Scandoloe931c1c2020-08-13 15:39:30 -0700784- job-template:
785 id: 'voltha-scale-measurements'
786 name: '{name}'
Matteo Scandolo7ec783f2022-05-09 15:10:10 -0700787 disabled: '{disable-job}'
Matteo Scandoloa7fda432022-06-27 16:57:37 -0700788 sandbox: true
Matteo Scandoloe931c1c2020-08-13 15:39:30 -0700789
790 description: |
791 <!-- Managed by Jenkins Job Builder -->
792 Created by {id} job-template from ci-management/jjb/voltha-scale.yaml <br /><br />
793 Using pipeline {pipeline-script} <br/><br/>
794 Scale measurements for VOLTHA 2.x
795
796 properties:
797 - cord-infra-properties:
Matteo Scandoloa0e6f3f2020-11-12 17:13:20 -0800798 build-days-to-keep: '{big-build-days-to-keep}'
799 artifact-num-to-keep: '{big-artifact-num-to-keep}'
Matteo Scandoloe931c1c2020-08-13 15:39:30 -0700800
801 wrappers:
802 - lf-infra-wrappers:
803 build-timeout: '{build-timeout}'
804 jenkins-ssh-credential: '{jenkins-ssh-credential}'
805
806 # default values
Matteo Scandolo8ddc31b2021-02-26 08:48:36 -0800807 pipeline-script: 'voltha/master/voltha-scale-test.groovy'
Matteo Scandoloe931c1c2020-08-13 15:39:30 -0700808 release: master
809
810 bbsimImg: voltha/bbsim:master
811 rwCoreImg: voltha/voltha-rw-core:master
812 ofAgentImg: voltha/voltha-ofagent-go:master
813 openoltAdapterImg: voltha/voltha-openolt-adapter:master
814 openonuAdapterImg: voltha/voltha-openonu-adapter:master
Andrea Campanella28763082020-11-18 10:55:31 +0100815 openonuAdapterGoImg: voltha/voltha-openonu-adapter-go:master
Matteo Scandoloe931c1c2020-08-13 15:39:30 -0700816 onosImg: voltha/voltha-onos:master
817
818 bbsimChart: onf/bbsim
819 volthaChart: onf/voltha
820 openoltAdapterChart: onf/voltha-adapter-openolt
821 openonuAdapterChart: onf/voltha-adapter-openonu
Matteo Scandolo285a42b2020-09-23 11:29:11 -0700822 onosChart: onos/onos-classic
Matteo Scandolo06506102020-10-13 12:24:20 -0700823 radiusChart: onf/freeradius
Matteo Scandoloe931c1c2020-08-13 15:39:30 -0700824
Matteo Scandolo4b006ae2020-11-09 16:14:40 -0800825 volthaStacks: 1
Matteo Scandoloe931c1c2020-08-13 15:39:30 -0700826 olts: 2
827 pons: 2
828 onus: 2
Elia Battiston4decc6b2022-02-25 10:22:56 +0100829 unis: 4
Matteo Scandoloe931c1c2020-08-13 15:39:30 -0700830 workflow: att
Hardik Windlass4a76e092022-01-28 11:51:55 +0000831 withOnuUpgrade: false
Matteo Scandoloe931c1c2020-08-13 15:39:30 -0700832 withFlows: false
833 provisionSubscribers: false
834 withEapol: true
835 withDhcp: true
836 withIgmp: false
Andrea Campanella7c3945f2022-02-07 17:19:30 +0100837 withMaclearning: false
Matteo Scandoloe931c1c2020-08-13 15:39:30 -0700838 withLLDP: false
Matteo Scandoloe931c1c2020-08-13 15:39:30 -0700839 withMonitoring: true
840 withProfiling: false
841 withPcap: false
Matteo Scandolo9e8c2a32020-10-13 18:02:33 -0700842 withRadius: yes
Andrea Campanellac179de22020-12-10 17:24:40 +0100843 openonuAdapterReplicas: 1
Matteo Scandolo9cdacc52020-10-21 14:54:06 -0700844 onosReplicas: 3
845 atomixReplicas: 3
Matteo Scandolo7d6695c2020-08-25 13:13:16 -0700846 kafkaReplicas: 3
847 etcdReplicas: 3
Matteo Scandoloe931c1c2020-08-13 15:39:30 -0700848 extraHelmFlags: ''
Matteo Scandolo29b67472021-11-22 14:17:57 -0800849 onosStatInterval: 10
850 onosGroupInterval: 10
Andrea Campanella55f0f0e2021-04-15 18:50:54 +0200851 flowObjWorkerThreads: 12
Matteo Scandoloe931c1c2020-08-13 15:39:30 -0700852 volthaSystemTestsChange: ''
Matteo Scandolo11311742021-01-25 13:56:22 -0800853 volthaHelmChartsChange: ''
Matteo Scandolo001003e2021-02-03 15:39:26 -0800854 kindVolthaChange: ''
Matteo Scandoloe931c1c2020-08-13 15:39:30 -0700855 inMemoryEtcdStorage: true
Andrea Campanellac8720d62022-01-28 10:03:32 +0100856 withMibTemplate: true
Matteo Scandolof9efcaf2022-06-22 15:49:04 -0700857 mibTemplateUrl: 'https://raw.githubusercontent.com/opencord/voltha-openonu-adapter-go/master/templates/BBSM-v0.0.1-BBSM_IMG_00001-v1.json'
Andrea Campanella188e50d2022-01-14 11:30:05 +0100858 karafHome: 'apache-karaf-4.2.14'
Matteo Scandolo19b61a02020-10-01 16:20:37 -0700859 logLevel: 'INFO'
Andrea Campanellade9139a2022-02-09 16:50:36 +0100860 testTimeout: 10
Matteo Scandolo9cdacc52020-10-21 14:54:06 -0700861 dockerRegistry: 10.90.0.101:30500
862 trigger-comment: vv7CBoQQYYonvaN8xcru
863 time-trigger: 0 0 29 2 *
Matteo Scandoloec43bab2022-06-24 11:49:56 -0700864 disable-job: true
Matteo Scandoloe931c1c2020-08-13 15:39:30 -0700865
866 <<: *voltha-scale-job-parameters
867
Matteo Scandolo272aed42020-05-08 15:05:57 -0700868 project-type: pipeline
869 concurrent: false
870
871 dsl: !include-raw-escape: pipeline/{pipeline-script}
872
Matteo Scandoloabb83972020-06-25 16:08:23 -0700873 triggers:
Matteo Scandolo9cdacc52020-10-21 14:54:06 -0700874 # periodic jobs will set this every 4 hours
875 # patchset jobs will set this to "0 0 29 2 *" (feb 29th, it's once every 4 years)
Matteo Scandoloabb83972020-06-25 16:08:23 -0700876 - timed: |
877 TZ=America/Los_Angeles
878 {time-trigger}
Matteo Scandolo9cdacc52020-10-21 14:54:06 -0700879 # periodic jobs will set this to vv7CBoQQYYonvaN8xcru (hopefully no-one will comment with that)
880 # patchset jobs will set this to a meaningful comment
881 - gerrit:
882 server-name: '{gerrit-server-name}'
883 silent-start: false
884 successful-message: "PASSED scale test"
885 failure-message: "FAILED scale test"
886 unstable-message: "UNSTABLE scale test"
887 trigger-on:
888 - comment-added-contains-event:
889 comment-contains-value: '.*{trigger-comment}.*'
890 projects:
891 - project-compare-type: REG_EXP
892 project-pattern: '^(voltha-go|voltha-openolt-adapter|voltha-openonu-adapter|ofagent-go|voltha-onos|bbsim)$'
893 branches:
894 - branch-compare-type: REG_EXP
895 branch-pattern: '{all-branches-regexp}'