Matteo Scandolo | 42f6e57 | 2021-01-25 15:11:34 -0800 | [diff] [blame] | 1 | // this keyword is dedicated to deploy a single VOLTHA stack with infra |
| 2 | // If you need to deploy different configurations you can use the volthaInfraDeploy and volthaStackDeploy keywords |
| 3 | |
| 4 | def call(Map config) { |
| 5 | // note that I can't define this outside the function as there's no global scope in Groovy |
| 6 | def defaultConfig = [ |
| 7 | onosReplica: 1, |
| 8 | atomixReplica: 1, |
| 9 | kafkaReplica: 1, |
| 10 | etcdReplica: 1, |
| 11 | bbsimReplica: 1, |
| 12 | infraNamespace: "infra", |
| 13 | volthaNamespace: "voltha", |
Matteo Scandolo | 2bc660a | 2021-02-12 10:52:25 -0800 | [diff] [blame] | 14 | stackName: "voltha", |
| 15 | stackId: 1, |
Matteo Scandolo | 42f6e57 | 2021-01-25 15:11:34 -0800 | [diff] [blame] | 16 | workflow: "att", |
| 17 | extraHelmFlags: "", |
Matteo Scandolo | fcfc60d | 2021-02-24 09:06:48 -0800 | [diff] [blame] | 18 | localCharts: false, // wether to use locally cloned charts or upstream one (for local we assume they are stored in $WORKSPACE/voltha-helm-charts) |
Matteo Scandolo | 37f168b | 2021-04-15 16:20:46 -0700 | [diff] [blame] | 19 | dockerRegistry: "", // use a different docker registry for all images, eg: "mirror.registry.opennetworking.org" |
Matteo Scandolo | d82d1de | 2021-04-06 14:55:58 -0700 | [diff] [blame] | 20 | kubeconfig: null, // location of the kubernetes config file, if null we assume it's stored in the $KUBECONFIG environment variable |
Matteo Scandolo | 42f6e57 | 2021-01-25 15:11:34 -0800 | [diff] [blame] | 21 | ] |
| 22 | |
| 23 | if (!config) { |
| 24 | config = [:] |
| 25 | } |
| 26 | |
| 27 | def cfg = defaultConfig + config |
| 28 | |
Matteo Scandolo | 37f168b | 2021-04-15 16:20:46 -0700 | [diff] [blame] | 29 | if (cfg.dockerRegistry != "") { |
Matteo Scandolo | 5947099 | 2021-04-20 11:30:57 -0700 | [diff] [blame] | 30 | cfg.extraHelmFlags += " --set global.image_registry=${cfg.dockerRegistry}/ " |
| 31 | cfg.extraHelmFlags += " --set etcd.image.registry=${cfg.dockerRegistry} " |
| 32 | cfg.extraHelmFlags += " --set kafka.image.registry=${cfg.dockerRegistry} " |
| 33 | cfg.extraHelmFlags += " --set kafka.zookeper.image.registry=${cfg.dockerRegistry} " |
| 34 | cfg.extraHelmFlags += " --set onos-classic.image.repository=${cfg.dockerRegistry}/voltha/voltha-onos " |
| 35 | cfg.extraHelmFlags += " --set onos-classic.atomix.image.repository=${cfg.dockerRegistry}/atomix/atomix " |
| 36 | cfg.extraHelmFlags += " --set freeradius.images.radius.registry=${cfg.dockerRegistry}/ " |
Matteo Scandolo | 37f168b | 2021-04-15 16:20:46 -0700 | [diff] [blame] | 37 | } |
| 38 | |
Matteo Scandolo | 42f6e57 | 2021-01-25 15:11:34 -0800 | [diff] [blame] | 39 | println "Deploying VOLTHA with the following parameters: ${cfg}." |
| 40 | |
| 41 | volthaInfraDeploy(cfg) |
| 42 | |
| 43 | volthaStackDeploy(cfg) |
| 44 | } |