blob: b7e43fc036388975ffc5565438b8a25714d66ebb [file] [log] [blame]
Matteo Scandolo42f6e572021-01-25 15:11:34 -08001
2def call(Map config) {
3 // note that I can't define this outside the function as there's no global scope in Groovy
4 def defaultConfig = [
Matteo Scandolo42f6e572021-01-25 15:11:34 -08005 bbsimReplica: 1,
6 infraNamespace: "infra",
7 volthaNamespace: "voltha",
8 stackName: "voltha",
Matteo Scandolo2bc660a2021-02-12 10:52:25 -08009 stackId: 1, // NOTE this is used to differentiate between BBSims across multiple stacks
Matteo Scandolo42f6e572021-01-25 15:11:34 -080010 workflow: "att",
11 extraHelmFlags: "",
Matteo Scandolofcfc60d2021-02-24 09:06:48 -080012 localCharts: false,
Matteo Scandolo42f6e572021-01-25 15:11:34 -080013 ]
14
15 if (!config) {
16 config = [:]
17 }
18
19 def cfg = defaultConfig + config
20
Matteo Scandolofcfc60d2021-02-24 09:06:48 -080021 def volthaStackChart = "onf/voltha-stack"
22
23 if (cfg.localCharts) {
24 volthaStackChart = "$WORKSPACE/voltha-helm-charts/voltha-stack"
25
26 sh """
27 pushd $WORKSPACE/voltha-helm-charts/voltha-stack
28 helm dep update
29 popd
30 """
31 }
32
Matteo Scandolo42f6e572021-01-25 15:11:34 -080033 println "Deploying VOLTHA Stack with the following parameters: ${cfg}."
34
35 sh """
Matteo Scandoloed1afdd2021-04-02 16:25:45 -070036 helm upgrade --install --create-namespace -n ${cfg.volthaNamespace} ${cfg.stackName} ${volthaStackChart} \
Matteo Scandolo42f6e572021-01-25 15:11:34 -080037 --set global.stack_name=${cfg.stackName} \
38 --set global.voltha_infra_name=voltha-infra \
39 --set global.voltha_infra_namespace=${cfg.infraNamespace} \
Matteo Scandoloed1afdd2021-04-02 16:25:45 -070040 ${cfg.extraHelmFlags}
Matteo Scandolo42f6e572021-01-25 15:11:34 -080041 """
42
43 for(int i = 0;i<cfg.bbsimReplica;i++) {
Matteo Scandolo0ce69f12021-05-04 08:44:53 -070044 // NOTE we don't need to update the tag for DT
45 script {
46 sh """
47 rm -f $WORKSPACE/bbsimCfg${cfg.stackId}${i}.yaml
48 """
49 if (cfg.workflow == "att" || cfg.workflow == "tt") {
50 def startingStag = 900
51 def bbsimCfg = readYaml file: "$WORKSPACE/voltha-helm-charts/examples/${cfg.workflow}-values.yaml"
52 // NOTE we assume that the only service that needs a different s_tag is the first one in the list
53 bbsimCfg["servicesConfig"]["services"][0]["s_tag"] = startingStag + i
54 println "Using BBSim Service config ${bbsimCfg}"
55 writeYaml file: "$WORKSPACE/bbsimCfg${cfg.stackId}${i}.yaml", data: bbsimCfg
56 } else {
57 // NOTE if it's DT just copy the file over
58 sh """
59 cp $WORKSPACE/voltha-helm-charts/examples/${cfg.workflow}-values.yaml $WORKSPACE/bbsimCfg${cfg.stackId}${i}.yaml
60 """
61 }
62 }
63
64 sh """
65 helm upgrade --install --create-namespace -n ${cfg.volthaNamespace} bbsim${i} onf/bbsim \
66 --set olt_id="${cfg.stackId}${i}" \
67 -f $WORKSPACE/bbsimCfg${cfg.stackId}${i}.yaml \
68 ${cfg.extraHelmFlags}
69 """
Matteo Scandolo42f6e572021-01-25 15:11:34 -080070 }
71
72 println "Wait for VOLTHA Stack ${cfg.stackName} to start"
73
74 sh """
75 set +x
76 voltha=\$(kubectl get pods -n ${cfg.volthaNamespace} -l app.kubernetes.io/part-of=voltha --no-headers | grep "0/" | wc -l)
77 while [[ \$voltha != 0 ]]; do
78 sleep 5
79 voltha=\$(kubectl get pods -n ${cfg.volthaNamespace} -l app.kubernetes.io/part-of=voltha --no-headers | grep "0/" | wc -l)
80 done
81 """
82
83 // also make sure that the ONOS config is loaded
84 println "Wait for ONOS Config loader to complete"
85
86 sh """
87 set +x
88 config=\$(kubectl get jobs.batch -n ${cfg.infraNamespace} --no-headers | grep "0/" | wc -l)
89 while [[ \$config != 0 ]]; do
90 sleep 5
91 config=\$(kubectl get jobs.batch -n ${cfg.infraNamespace} --no-headers | grep "0/" | wc -l)
92 done
93 """
94}