Charles Chan | 4a10722 | 2020-10-30 17:23:48 -0700 | [diff] [blame] | 1 | .. |
| 2 | SPDX-FileCopyrightText: © 2020 Open Networking Foundation <support@opennetworking.org> |
| 3 | SPDX-License-Identifier: Apache-2.0 |
| 4 | |
| 5 | =============== |
| 6 | TOST Deployment |
| 7 | =============== |
| 8 | |
| 9 | Update aether-pod-config |
| 10 | ======================== |
| 11 | |
| 12 | Aether-pod-configs is a git project hosted on **gerrit.opencord.org** and we placed the following materials in it. |
| 13 | |
| 14 | - Terraform scripts to install TOST applications on Rancher, including ONOS, Stratum and Telegraf. |
| 15 | - Customized configuration for each application (helm values). |
| 16 | - Application specific configuration files, including ONOS network configuration and Stratum chassis config. |
| 17 | |
| 18 | Here is an example folder structure: |
| 19 | |
| 20 | .. code-block:: console |
| 21 | |
| 22 | ╰─$ tree staging/ace-menlo/tost |
| 23 | staging/ace-menlo/tost |
| 24 | ├── app_map.tfvars |
| 25 | ├── backend.tf |
Hung-Wei Chiu | f7cadb3 | 2020-11-19 04:49:35 +0000 | [diff] [blame] | 26 | ├── deepinsight |
| 27 | │ ├── README.md |
| 28 | │ ├── deepinsight-topo.json |
| 29 | │ └── deepinsight-topo.json.license |
| 30 | ├── main.tf -> ../../../common/tost/main.tf |
Charles Chan | 4a10722 | 2020-10-30 17:23:48 -0700 | [diff] [blame] | 31 | ├── onos |
Hung-Wei Chiu | f7cadb3 | 2020-11-19 04:49:35 +0000 | [diff] [blame] | 32 | │ ├── app_map.tfvars |
| 33 | │ ├── backend.tf |
| 34 | │ ├── main.tf -> ../../../../common/tost/apps/onos/main.tf |
| 35 | │ ├── onos-netcfg.json |
| 36 | │ ├── onos-netcfg.json.license |
| 37 | │ ├── onos.yaml |
| 38 | │ └── variables.tf -> ../../../../common/tost/apps/onos/variables.tf |
Charles Chan | 4a10722 | 2020-10-30 17:23:48 -0700 | [diff] [blame] | 39 | ├── stratum |
Hung-Wei Chiu | f7cadb3 | 2020-11-19 04:49:35 +0000 | [diff] [blame] | 40 | │ ├── app_map.tfvars |
| 41 | │ ├── backend.tf |
| 42 | │ ├── main.tf -> ../../../../common/tost/apps/stratum/main.tf |
| 43 | │ ├── menlo-staging-leaf-1-chassis-config.pb.txt |
| 44 | │ ├── menlo-staging-leaf-2-chassis-config.pb.txt |
| 45 | │ ├── menlo-staging-spine-1-chassis-config.pb.txt |
| 46 | │ ├── menlo-staging-spine-2-chassis-config.pb.txt |
| 47 | │ ├── stratum.yaml |
| 48 | │ ├── tost-dev-chassis-config.pb.txt |
| 49 | │ └── variables.tf -> ../../../../common/tost/apps/stratum/variables.tf |
Charles Chan | 4a10722 | 2020-10-30 17:23:48 -0700 | [diff] [blame] | 50 | ├── telegraf |
Hung-Wei Chiu | f7cadb3 | 2020-11-19 04:49:35 +0000 | [diff] [blame] | 51 | │ ├── app_map.tfvars |
| 52 | │ ├── backend.tf |
| 53 | │ ├── main.tf -> ../../../../common/tost/apps/telegraf/main.tf |
| 54 | │ ├── telegraf.yaml |
| 55 | │ └── variables.tf -> ../../../../common/tost/apps/telegraf/variables.tf |
| 56 | └── variables.tf -> ../../../common/tost/variables.tf |
Charles Chan | 4a10722 | 2020-10-30 17:23:48 -0700 | [diff] [blame] | 57 | |
| 58 | There are four Terraform scripts inside **tost** directory and are responsible for managing each service. |
| 59 | |
| 60 | Root folder |
| 61 | ^^^^^^^^^^^ |
| 62 | Terraform reads **app_map.tfvars** to know which application will be installed on Rancher |
| 63 | and which version and customized values need to apply to. |
| 64 | |
Hyunsun Moon | fc751aa | 2020-11-11 18:49:47 -0800 | [diff] [blame] | 65 | Here is the example of **app_map.tfvars** which defines prerequisite apps for TOST |
| 66 | as well as project and namespace in which TOST apps will be provisioned. |
| 67 | Note that currently we don't have any prerequisite so we left this blank intentionally. |
| 68 | It can be used to specify prerequisites in the future. |
Charles Chan | 4a10722 | 2020-10-30 17:23:48 -0700 | [diff] [blame] | 69 | |
| 70 | .. code-block:: |
| 71 | |
| 72 | project_name = "tost" |
| 73 | namespace_name = "tost" |
| 74 | |
Hyunsun Moon | fc751aa | 2020-11-11 18:49:47 -0800 | [diff] [blame] | 75 | app_map = {} |
Charles Chan | 4a10722 | 2020-10-30 17:23:48 -0700 | [diff] [blame] | 76 | |
| 77 | ONOS folder |
| 78 | ^^^^^^^^^^^ |
| 79 | All files under **onos** directory are related to ONOS application. |
Hyunsun Moon | fc751aa | 2020-11-11 18:49:47 -0800 | [diff] [blame] | 80 | The **app_map.tfvars** in this folder describes the information about ONOS helm chart. |
Charles Chan | 4a10722 | 2020-10-30 17:23:48 -0700 | [diff] [blame] | 81 | |
| 82 | In this example, we specify the **onos-tost** helm chart version to **0.1.18** and load **onos.yaml** |
| 83 | as custom value files. |
| 84 | |
| 85 | .. code-block:: |
| 86 | |
| 87 | apps = ["onos"] |
| 88 | |
| 89 | app_map = { |
| 90 | onos = { |
| 91 | app_name = "onos-tost" |
| 92 | project_name = "tost" |
| 93 | target_namespace = "onos-tost" |
| 94 | catalog_name = "onos" |
| 95 | template_name = "onos-tost" |
| 96 | template_version = "0.1.18" |
| 97 | values_yaml = ["onos.yaml"] |
| 98 | } |
| 99 | } |
| 100 | |
| 101 | **onos.yaml** used to custom your ONOS-tost Helm chart values and please pay attention to the last section, config. |
| 102 | |
| 103 | .. code-block:: yaml |
| 104 | |
| 105 | onos-classic: |
| 106 | image: |
| 107 | tag: master |
| 108 | pullPolicy: Always |
| 109 | replicas: 1 |
| 110 | atomix: |
| 111 | replicas: 1 |
| 112 | logging: |
| 113 | config: | |
| 114 | # Common pattern layout for appenders |
| 115 | log4j2.stdout.pattern = %d{RFC3339} %-5level [%c{1}] %msg%n%throwable |
| 116 | |
| 117 | # Root logger |
| 118 | log4j2.rootLogger.level = INFO |
| 119 | |
| 120 | # OSGi appender |
| 121 | log4j2.rootLogger.appenderRef.PaxOsgi.ref = PaxOsgi |
| 122 | log4j2.appender.osgi.type = PaxOsgi |
| 123 | log4j2.appender.osgi.name = PaxOsgi |
| 124 | log4j2.appender.osgi.filter = * |
| 125 | |
| 126 | # stdout appender |
| 127 | log4j2.rootLogger.appenderRef.Console.ref = Console |
| 128 | log4j2.appender.console.type = Console |
| 129 | log4j2.appender.console.name = Console |
| 130 | log4j2.appender.console.layout.type = PatternLayout |
| 131 | log4j2.appender.console.layout.pattern = ${log4j2.stdout.pattern} |
| 132 | |
| 133 | # SSHD logger |
| 134 | log4j2.logger.sshd.name = org.apache.sshd |
| 135 | log4j2.logger.sshd.level = INFO |
| 136 | |
| 137 | # Spifly logger |
| 138 | log4j2.logger.spifly.name = org.apache.aries.spifly |
| 139 | log4j2.logger.spifly.level = WARN |
| 140 | |
| 141 | # SegmentRouting logger |
| 142 | log4j2.logger.segmentrouting.name = org.onosproject.segmentrouting |
| 143 | log4j2.logger.segmentrouting.level = DEBUG |
| 144 | |
| 145 | config: |
| 146 | server: gerrit.opencord.org |
| 147 | repo: aether-pod-configs |
| 148 | folder: staging/ace-menlo/tost/onos |
| 149 | file: onos-netcfg.json |
| 150 | netcfgUrl: http://onos-tost-onos-classic-hs.tost.svc:8181/onos/v1/network/configuration |
| 151 | clusterUrl: http://onos-tost-onos-classic-hs.tost.svc:8181/onos/v1/cluster |
| 152 | |
| 153 | Once the **onos-tost** containers are deployed into Kubernetes, |
| 154 | it will read **onos-netcfg.json** file from the **aether-pod-config** and please change the folder name to different location if necessary. |
| 155 | |
| 156 | **onos-netcfg.json** is environment dependent and please change it to fit your environment. |
| 157 | |
| 158 | .. |
| 159 | TODO: Add an example based on the recommended topology |
| 160 | |
| 161 | Stratum folder |
| 162 | ^^^^^^^^^^^^^^ |
| 163 | Stratum uses a similar directory structure as ONOS for Terraform and its configuration files. |
| 164 | |
| 165 | The customize value file is named **stratum.yaml** |
| 166 | |
| 167 | .. code-block:: |
| 168 | |
| 169 | app_map = { |
| 170 | stratum= { |
| 171 | app_name = "stratum" |
| 172 | project_name = "tost" |
| 173 | target_namespace = "stratum" |
| 174 | catalog_name = "stratum" |
| 175 | template_name = "stratum" |
| 176 | template_version = "0.1.9" |
| 177 | values_yaml = ["stratum.yaml"] |
| 178 | } |
| 179 | } |
| 180 | |
| 181 | Like ONOS, **stratum.yaml** used to customize Stratum Helm Chart and please pay attention to the config section. |
| 182 | |
| 183 | .. code-block:: yaml |
| 184 | |
| 185 | image: |
| 186 | registry: registry.aetherproject.org |
| 187 | repository: tost/stratum-bfrt |
| 188 | tag: 9.2.0-4.14.49 |
| 189 | pullPolicy: Always |
| 190 | pullSecrets: |
| 191 | - aether-registry-credential |
| 192 | |
| 193 | extraParams: |
| 194 | - "-max_log_size=0" |
| 195 | - '-write_req_log_file=""' |
| 196 | - '-read_req_log_file=""' |
| 197 | - "-v=0" |
| 198 | - "-stderrthreshold=0" |
| 199 | - "-bf_switchd_background=false" |
| 200 | |
| 201 | nodeSelector: |
| 202 | node-role.aetherproject.org: switch |
| 203 | |
| 204 | tolerations: |
| 205 | - effect: NoSchedule |
| 206 | value: switch |
| 207 | key: node-role.aetherproject.org |
| 208 | |
| 209 | config: |
| 210 | server: gerrit.opencord.org |
| 211 | repo: aether-pod-configs |
| 212 | folder: staging/ace-onf-menlo/tost/stratum |
| 213 | |
| 214 | Stratum has the same deployment workflow as ONOS. |
| 215 | Once it is deployed to Kubernetes, it will read switch-dependent config files from the aether-pod-configs repo. |
| 216 | The key folder indicates that relative path of configs. |
| 217 | |
| 218 | .. attention:: |
| 219 | |
| 220 | The switch-dependent config file should be named as **${hostname}-chassis-config.pb.txt**. |
| 221 | For example, if the host name of your Tofino switch is **my-leaf**, please name config file **my-leaf-config.pb.txt**. |
| 222 | |
| 223 | .. |
| 224 | TODO: Add an example based on the recommended topology |
| 225 | |
| 226 | Telegraf folder |
| 227 | ^^^^^^^^^^^^^^^ |
| 228 | |
| 229 | The app_map.tfvars specify the Helm Chart version and the filename of the custom Helm value file. |
| 230 | |
| 231 | .. code-block:: |
| 232 | |
| 233 | apps=["telegraf"] |
| 234 | |
| 235 | app_map = { |
| 236 | telegraf= { |
| 237 | app_name = "telegraf" |
| 238 | project_name = "tost" |
| 239 | target_namespace = "telegraf" |
| 240 | catalog_name = "influxdata" |
| 241 | template_name = "telegraf" |
| 242 | template_version = "1.7.23" |
| 243 | values_yaml = ["telegraf.yaml"] |
| 244 | } |
| 245 | } |
| 246 | |
| 247 | The **telegraf.yaml** used to override the Telegraf Helm Chart and its environment-dependent. |
| 248 | Please pay attention to the **inputs.addresses** section. |
| 249 | Telegraf will read data from stratum so we need to specify all Tofino switch’s IP addresses here. |
| 250 | Taking Menlo staging pod as example, there are four switches so we fill out 4 IP addresses. |
| 251 | |
| 252 | .. code-block:: yaml |
| 253 | |
| 254 | podAnnotations: |
| 255 | field.cattle.io/workloadMetrics: '[{"path":"/metrics","port":9273,"schema":"HTTP"}]' |
| 256 | |
| 257 | config: |
| 258 | outputs: |
| 259 | - prometheus_client: |
| 260 | metric_version: 2 |
| 261 | listen: ":9273" |
| 262 | inputs: |
| 263 | - cisco_telemetry_gnmi: |
| 264 | addresses: |
| 265 | - 10.92.1.81:9339 |
| 266 | - 10.92.1.82:9339 |
| 267 | - 10.92.1.83:9339 |
| 268 | - 10.92.1.84:9339 |
| 269 | redial: 10s |
| 270 | - cisco_telemetry_gnmi.subscription: |
| 271 | name: stratum_counters |
| 272 | origin: openconfig-interfaces |
| 273 | path: /interfaces/interface[name=*]/state/counters |
| 274 | sample_interval: 5000ns |
| 275 | subscription_mode: sample |
| 276 | |
Hung-Wei Chiu | f7cadb3 | 2020-11-19 04:49:35 +0000 | [diff] [blame] | 277 | |
| 278 | Create Your Own Configs |
| 279 | ^^^^^^^^^^^^^^^^^^^^^^^ |
| 280 | |
| 281 | The easiest way to create your own configs is running the template script. |
| 282 | |
| 283 | Assumed we would like to set up the **ace-example** pod in the production environment. |
| 284 | |
| 285 | 1. open the **tools/ace_env** |
| 286 | 2. fill out all required variables |
| 287 | 3. import the environment variables from **tools/ace_env** |
| 288 | 4. perform the makefile command to generate configuration and directory for TOST |
| 289 | 5. update **onos-netcfg.json** for ONOS |
| 290 | 6. update **${hostname}-chassis-config.pb.txt** for Stratum |
| 291 | 7. update all switch IPs in **telegraf.yaml** |
| 292 | 8. commit your change and open the Gerrit patch |
| 293 | |
| 294 | .. code-block:: console |
| 295 | |
| 296 | vim tools/ace_env |
| 297 | source tools/ace_env |
| 298 | make -C tools/ tost |
| 299 | vim production/ace-example/tost/onos/onos-netcfg.json |
| 300 | vim production/ace-example/tost/stratum/*${hostname}-chassis-config.pb.txt** |
| 301 | vim production/ace-example/tost/telegraf/telegraf.yam |
| 302 | git add commit |
| 303 | git review |
| 304 | |
| 305 | |
Charles Chan | 4a10722 | 2020-10-30 17:23:48 -0700 | [diff] [blame] | 306 | Quick recap |
| 307 | ^^^^^^^^^^^ |
| 308 | |
| 309 | To recap, most of the files in **tost** folder can be copied from existing examples. |
| 310 | However, there are a few files we need to pay extra attentions to. |
| 311 | |
| 312 | - **onos-netcfg.json** in **onos** folder |
| 313 | - Chassis config in **stratum** folder |
| 314 | There should be one chassis config for each switch. The file name needs to be **${hostname}-chassis-config.pb.txt** |
| 315 | - **telegraf.yaml** in **telegraf** folder need to be updated with all switch IP addresses |
| 316 | |
| 317 | Double check these files and make sure they have been updated accordingly. |
| 318 | |
| 319 | |
| 320 | Create a review request |
| 321 | ^^^^^^^^^^^^^^^^^^^^^^^ |
| 322 | We also need to create a gerrit review request, similar to what we have done in the **Aether Run-Time Deployment**. |
| 323 | Please refer to :doc:`Aether Run-Time Deployment <run_time_deployment>` to create a review request. |
| 324 | |
| 325 | |
| 326 | Create TOST deployment job in Jenkins |
| 327 | ===================================== |
| 328 | There are three major components in the Jenkins system, the Jenkins pipeline and Jenkins Job Builder and Jenkins Job. |
| 329 | |
Hung-Wei Chiu | f7cadb3 | 2020-11-19 04:49:35 +0000 | [diff] [blame] | 330 | We follow the Infrastructure as Code principle to place three major components in a Git repo, **aether-ci-management** |
| 331 | Download **aether-ci-management** repository . |
Charles Chan | 4a10722 | 2020-10-30 17:23:48 -0700 | [diff] [blame] | 332 | |
Hung-Wei Chiu | f7cadb3 | 2020-11-19 04:49:35 +0000 | [diff] [blame] | 333 | .. code-block:: shell |
| 334 | |
| 335 | $ cd $WORKDIR |
| 336 | $ git clone "ssh://[username]@gerrit.opencord.org:29418/aether-ci-management" |
| 337 | |
| 338 | |
| 339 | Here is the example of folder structure, we put everything related to three major components under the jjb folder. |
| 340 | |
| 341 | .. code-block:: console |
| 342 | |
| 343 | $ tree -d jjb |
| 344 | jjb |
| 345 | ├── ci-management |
| 346 | ├── global |
| 347 | │ ├── jenkins-admin -> ../../global-jjb/jenkins-admin |
| 348 | │ ├── jenkins-init-scripts -> ../../global-jjb/jenkins-init-scripts |
| 349 | │ ├── jjb -> ../../global-jjb/jjb |
| 350 | │ └── shell -> ../../global-jjb/shell |
| 351 | ├── pipeline |
| 352 | ├── repos |
| 353 | ├── shell |
| 354 | └── templates |
Charles Chan | 4a10722 | 2020-10-30 17:23:48 -0700 | [diff] [blame] | 355 | |
| 356 | |
| 357 | Jenkins pipeline |
| 358 | ^^^^^^^^^^^^^^^^ |
| 359 | Jenkins pipeline runs the Terraform scripts to install desired applications into the specified Kubernetes cluster. |
| 360 | |
| 361 | Both ONOS and Stratum will read configuration files (network config, chassis config) from aether-pod-config. |
| 362 | The default git branch is master. |
| 363 | For testing purpose, we also provide two parameters to specify the number of reviews and patchset. |
| 364 | We will explain more in the next section. |
| 365 | |
| 366 | .. note:: |
| 367 | |
| 368 | Currently, we don’t perform the incremental upgrade for TOST application. |
| 369 | Instead, we perform the clean installation. |
| 370 | In the pipeline script, Terraform will destroy all existing resources and then create them again. |
| 371 | |
Hung-Wei Chiu | f7cadb3 | 2020-11-19 04:49:35 +0000 | [diff] [blame] | 372 | |
| 373 | We put all pipeline scripts under the pipeline directory, the language of the pipeline script is groovy. |
| 374 | |
| 375 | .. code-block:: console |
| 376 | |
| 377 | $ tree pipeline |
| 378 | pipeline |
| 379 | ├── aether-in-a-box.groovy |
| 380 | ├── artifact-release.groovy |
| 381 | ├── cd-pipeline-charts-postrelease.groovy |
| 382 | ├── cd-pipeline-dockerhub-postrelease.groovy |
| 383 | ├── cd-pipeline-postrelease.groovy |
| 384 | ├── cd-pipeline-terraform.groovy |
| 385 | ├── docker-publish.groovy |
| 386 | ├── ng40-func.groovy |
| 387 | ├── ng40-scale.groovy |
| 388 | ├── reuse-scan-gerrit.groovy |
| 389 | ├── reuse-scan-github.groovy |
| 390 | ├── tost-onos.groovy |
| 391 | ├── tost-stratum.groovy |
| 392 | ├── tost-telegraf.groovy |
| 393 | └── tost.groovy |
| 394 | |
| 395 | Currently, we had four pipeline scripts for TOST deployment. |
| 396 | |
| 397 | 1. tost-onos.groovy |
| 398 | 2. tost-stratum.groovy |
| 399 | 3. tost-telegraf.groovy |
| 400 | 4. tost.groovy |
| 401 | |
| 402 | tost-[onos/stratum/telegraf].groovy are used to deploy the individual application respectively, |
| 403 | and tost.groovy is a high level script, used to deploy the TOST application, it will execute |
| 404 | the above three scripts in its pipeline script. |
| 405 | |
| 406 | |
Charles Chan | 4a10722 | 2020-10-30 17:23:48 -0700 | [diff] [blame] | 407 | Jenkins jobs |
| 408 | ^^^^^^^^^^^^ |
| 409 | |
| 410 | Jenkins job is the task unit in the Jenkins system. A Jenkins job contains the following information: |
| 411 | |
| 412 | - Jenkins pipeline |
| 413 | - Parameters for Jenkins pipeline |
| 414 | - Build trigger |
| 415 | - Source code management |
| 416 | |
| 417 | We created one Jenkins job for each TOST component, per Aether edge. |
| 418 | We have four Jenkins jobs (HostPath provisioner, ONOS, Stratum and Telegraf) for each edge as of today. |
| 419 | |
| 420 | There are 10+ parameters in Jenkins jobs and they can be divided into two parts, cluster-level and application-level. |
| 421 | Here is an example of supported parameters. |
| 422 | |
| 423 | .. image:: images/jenkins-onos-params.png |
| 424 | :width: 480px |
| 425 | |
| 426 | Application level |
| 427 | """"""""""""""""" |
| 428 | |
Hung-Wei Chiu | f7cadb3 | 2020-11-19 04:49:35 +0000 | [diff] [blame] | 429 | - **GERRIT_CHANGE_NUMBER/GERRIT_PATCHSET_NUMBER**: tell the pipeline script to read |
| 430 | the config for aether-pod-configs repo from a specified gerrit review, instead of the |
| 431 | HEAD branch. It’s good for developer to test its change before merge. |
| 432 | - **onos_user**: used to login ONOS controller |
Charles Chan | 4a10722 | 2020-10-30 17:23:48 -0700 | [diff] [blame] | 433 | - **git_repo/git_server/git_user/git_password_env**: information of git repository, **git_password_env** is a key for |
Hung-Wei Chiu | f7cadb3 | 2020-11-19 04:49:35 +0000 | [diff] [blame] | 434 | Jenkins Credential system. |
Charles Chan | 4a10722 | 2020-10-30 17:23:48 -0700 | [diff] [blame] | 435 | |
| 436 | Cluster level |
| 437 | """"""""""""" |
| 438 | - **gcp_credential**: Google Cloud Platform credential for remote storage, used by Terraform. |
| 439 | - **terraform_dir**: The root directory of the TOST directory. |
| 440 | - **rancher_cluster**: target Rancher cluster name. |
| 441 | - **rancher_api_env**: Rancher credential to access Rancher, used by Terraform. |
Charles Chan | 4a10722 | 2020-10-30 17:23:48 -0700 | [diff] [blame] | 442 | |
| 443 | .. note:: |
| 444 | |
Hung-Wei Chiu | f7cadb3 | 2020-11-19 04:49:35 +0000 | [diff] [blame] | 445 | Typically, developer only focus on **GERRIT_CHANGE_NUMBER** and **GERRIT_PATCHSET_NUMBER**. The rest of them are managed by OPs. |
Charles Chan | 4a10722 | 2020-10-30 17:23:48 -0700 | [diff] [blame] | 446 | |
| 447 | Jenkins Job Builder (JJB) |
| 448 | ^^^^^^^^^^^^^^^^^^^^^^^^^ |
Hung-Wei Chiu | f7cadb3 | 2020-11-19 04:49:35 +0000 | [diff] [blame] | 449 | |
| 450 | We prefer to apply the IaC (Infrastructure as Code) for everything. |
Charles Chan | 4a10722 | 2020-10-30 17:23:48 -0700 | [diff] [blame] | 451 | We use the JJB (Jenkins Job Builder) to create new Jenkins Job, including the Jenkins pipeline. |
| 452 | We need to clone a set of Jenkins jobs when a new edge is deployed. |
| 453 | |
Hung-Wei Chiu | f7cadb3 | 2020-11-19 04:49:35 +0000 | [diff] [blame] | 454 | In order to provide the flexibility and avoid re-inventing the wheel, we used the job template to declare your job. |
| 455 | Thanks to the JJB, we can use the parameters in the job template to render different kinds of jobs easily. |
| 456 | |
| 457 | All the template files are placed under templates directory. |
| 458 | |
| 459 | .. code-block:: console |
| 460 | |
| 461 | ╰─$ tree templates |
| 462 | templates |
| 463 | ├── aether-in-a-box.yaml |
| 464 | ├── archive-artifacts.yaml |
| 465 | ├── artifact-release.yml |
| 466 | ├── cd-pipeline-terraform.yaml |
| 467 | ├── docker-publish-github.yaml |
| 468 | ├── docker-publish.yaml |
| 469 | ├── helm-lint.yaml |
| 470 | ├── make-test.yaml |
| 471 | ├── ng40-nightly.yaml |
| 472 | ├── ng40-test.yaml |
| 473 | ├── private-docker-publish.yaml |
| 474 | ├── private-make-test.yaml |
| 475 | ├── publish-helm-repo.yaml |
| 476 | ├── reuse-gerrit.yaml |
| 477 | ├── reuse-github.yaml |
| 478 | ├── sync-dir.yaml |
| 479 | ├── tost.yaml |
| 480 | ├── verify-licensed.yaml |
| 481 | └── versioning.yaml |
| 482 | |
| 483 | |
| 484 | we defined all TOST required job templates in tost.yaml and here is its partial content. |
| 485 | |
| 486 | .. code-block:: yaml |
| 487 | |
| 488 | - job-template: |
| 489 | name: "{name}-onos" |
| 490 | id: "deploy-onos" |
| 491 | project-type: pipeline |
| 492 | dsl: !include-raw-escape: jjb/pipeline/tost-onos.groovy |
| 493 | triggers: |
| 494 | - onf-infra-tost-gerrit-trigger: |
| 495 | gerrit-server-name: '{gerrit-server-name}' |
| 496 | trigger_command: "apply" |
| 497 | pattern: "{terraform_dir}/tost/onos/.*" |
| 498 | logrotate: |
| 499 | daysToKeep: 7 |
| 500 | numToKeep: 10 |
| 501 | artifactDaysToKeep: 7 |
| 502 | artifactNumToKeep: 10 |
| 503 | parameters: |
| 504 | - string: |
| 505 | name: gcp_credential |
| 506 | default: "{google_bucket_access}" |
| 507 | - string: |
| 508 | name: rancher_cluster |
| 509 | default: "{rancher_cluster}" |
| 510 | - string: |
| 511 | name: rancher_api_env |
| 512 | default: "{rancher_api}" |
| 513 | - string: |
| 514 | name: git_repo |
| 515 | default: "aether-pod-configs" |
| 516 | - string: |
| 517 | name: git_server |
| 518 | default: "gerrit.opencord.org" |
| 519 | - string: |
| 520 | name: git_ssh_user |
| 521 | default: "jenkins" |
| 522 | |
| 523 | |
| 524 | |
| 525 | |
| 526 | Once we have the job template, we need to tell the JJB, we want to use the job template to create our own jobs. |
| 527 | Here comes the concept of project, you need to define job templates you want to use and the values of all parameters. |
| 528 | |
| 529 | |
| 530 | We put all project yaml files under the repo directory and here is the example |
| 531 | |
| 532 | .. code-block:: console |
| 533 | |
| 534 | ╰─$ tree repos 130 ↵ |
| 535 | repos |
| 536 | ├── aether-helm-charts.yaml |
| 537 | ├── aether-in-a-box.yaml |
| 538 | ├── cd-pipeline-terraform.yaml |
| 539 | ├── ng40-test.yaml |
| 540 | ├── spgw.yaml |
| 541 | └── tost.yaml |
| 542 | |
| 543 | |
| 544 | Following is the example of tost projects, we defined three projects here, and each project has different |
| 545 | parameters and Jenkins jobs it wants to use. |
| 546 | |
| 547 | .. code-block:: yaml |
| 548 | |
| 549 | - project: |
| 550 | name: deploy-menlo-tost-dev |
| 551 | rancher_cluster: "menlo-tost-dev" |
| 552 | terraform_dir: "testing/menlo-tost" |
| 553 | rancher_api: "{rancher_testing_access}" |
| 554 | jobs: |
| 555 | - "deploy" |
| 556 | - "deploy-onos" |
| 557 | - "deploy-stratum" |
| 558 | - "deploy-telegraf" |
| 559 | - project: |
| 560 | name: deploy-menlo-tost-staging |
| 561 | rancher_cluster: "ace-menlo" |
| 562 | terraform_dir: "staging/ace-menlo" |
| 563 | rancher_api: "{rancher_staging_access}" |
| 564 | jobs: |
| 565 | - "deploy" |
| 566 | - "deploy-onos" |
| 567 | - "deploy-stratum" |
| 568 | - "deploy-telegraf" |
| 569 | - project: |
| 570 | name: deploy-menlo-production |
| 571 | rancher_cluster: "ace-menlo" |
| 572 | terraform_dir: "production/ace-menlo" |
| 573 | rancher_api: "{rancher_production_access}" |
| 574 | jobs: |
| 575 | - "deploy" |
| 576 | - "deploy-onos" |
| 577 | - "deploy-stratum" |
| 578 | - "deploy-telegraf" |
| 579 | |
| 580 | |
| 581 | Create Your Own Jenkins Job |
| 582 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 583 | |
| 584 | Basically, if you don't need to customize the Jenkins pipeline script and the job configuration, the only thing |
| 585 | you need to do is modify the repos/tost.yaml to add your project. |
| 586 | |
| 587 | For example, we would like to deploy the TOST to our production pod, let's assume it named "tost-example". |
| 588 | Add the following content into repos/tost.yaml |
| 589 | |
| 590 | .. code-block:: yaml |
| 591 | |
| 592 | - project: |
| 593 | name: deploy-tost-example-production |
| 594 | rancher_cluster: "ace-test-example" |
| 595 | terraform_dir: "production/tost-example" |
| 596 | rancher_api: "{rancher_production_access}" |
| 597 | jobs: |
| 598 | - "deploy" |
| 599 | - "deploy-onos" |
| 600 | - "deploy-stratum" |
| 601 | - "deploy-telegraf" |
| 602 | |
| 603 | |
| 604 | .. note:: |
| 605 | |
| 606 | The **terraform_dir** indicates the directory location in aether-pod-configs repo, please ensure your Terraform scripts |
| 607 | already there before running the Jenkins job. |
| 608 | |
Charles Chan | 4a10722 | 2020-10-30 17:23:48 -0700 | [diff] [blame] | 609 | |
| 610 | Trigger TOST deployment in Jenkins |
| 611 | ================================== |
Hung-Wei Chiu | f7cadb3 | 2020-11-19 04:49:35 +0000 | [diff] [blame] | 612 | Whenever a change is merged into **aether-pod-config**, |
Charles Chan | 4a10722 | 2020-10-30 17:23:48 -0700 | [diff] [blame] | 613 | the Jenkins job should be triggered automatically to (re)deploy TOST. |
Charles Chan | 4a10722 | 2020-10-30 17:23:48 -0700 | [diff] [blame] | 614 | |
Hung-Wei Chiu | f7cadb3 | 2020-11-19 04:49:35 +0000 | [diff] [blame] | 615 | You can also type the comment **apply** in the Gerrit patch, it will trigger Jenkins jobs to deploy TOST for you. |
Charles Chan | 4a10722 | 2020-10-30 17:23:48 -0700 | [diff] [blame] | 616 | |
| 617 | Troubleshooting |
| 618 | =============== |
| 619 | |
| 620 | The deployment process involves the following steps: |
| 621 | |
| 622 | 1. Jenkins Job |
| 623 | 2. Jenkins Pipeline |
| 624 | 3. Clone Git Repository |
| 625 | 4. Execute Terraform scripts |
| 626 | 5. Rancher start to install applications |
| 627 | 6. Applications be deployed into Kubernetes cluster |
| 628 | 7. ONOS/Stratum will read the configuration (network config, chassis config) |
| 629 | 8. Pod become running |
| 630 | |
| 631 | Taking ONOS as an example, here's what you can do to troubleshoot. |
| 632 | |
| 633 | You can see the log message of the first 4 steps in Jenkins console. |
| 634 | If something goes wrong, the status of the Jenkins job will be in red. |
| 635 | If Jenkins doesn't report any error message, the next step is going to Rancher's portal |
| 636 | to ensure the Answers is same as the *onos.yaml* in *aether-pod-configs*. |