83671d14bfd6ad22759ac097aeeeeb75593698d7
[osm/devops.git] / jenkins / ci-pipelines / ci_stage_3.groovy
1 /* Copyright ETSI Contributors and Others
2  *
3  * All Rights Reserved.
4  *
5  *   Licensed under the Apache License, Version 2.0 (the "License"); you may
6  *   not use this file except in compliance with the License. You may obtain
7  *   a copy of the License at
8  *
9  *        http://www.apache.org/licenses/LICENSE-2.0
10  *
11  *   Unless required by applicable law or agreed to in writing, software
12  *   distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13  *   WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14  *   License for the specific language governing permissions and limitations
15  *   under the License.
16  */
17
18 properties([
19     parameters([
20         string(defaultValue: env.GERRIT_BRANCH, description: '', name: 'GERRIT_BRANCH'),
21         string(defaultValue: 'system', description: '', name: 'NODE'),
22         string(defaultValue: '', description: '', name: 'BUILD_FROM_SOURCE'),
23         string(defaultValue: 'unstable', description: '', name: 'REPO_DISTRO'),
24         string(defaultValue: '', description: '', name: 'COMMIT_ID'),
25         string(defaultValue: '-stage_2', description: '', name: 'UPSTREAM_SUFFIX'),
26         string(defaultValue: 'pubkey.asc', description: '', name: 'REPO_KEY_NAME'),
27         string(defaultValue: 'release', description: '', name: 'RELEASE'),
28         string(defaultValue: '', description: '', name: 'UPSTREAM_JOB_NAME'),
29         string(defaultValue: '', description: '', name: 'UPSTREAM_JOB_NUMBER'),
30         string(defaultValue: 'OSMETSI', description: '', name: 'GPG_KEY_NAME'),
31         string(defaultValue: 'artifactory-osm', description: '', name: 'ARTIFACTORY_SERVER'),
32         string(defaultValue: 'osm-stage_4', description: '', name: 'DOWNSTREAM_STAGE_NAME'),
33         string(defaultValue: 'testing-daily', description: '', name: 'DOCKER_TAG'),
34         string(defaultValue: 'ubuntu20.04', description: '', name: 'OPENSTACK_BASE_IMAGE'),
35         booleanParam(defaultValue: false, description: '', name: 'SAVE_CONTAINER_ON_FAIL'),
36         booleanParam(defaultValue: false, description: '', name: 'SAVE_CONTAINER_ON_PASS'),
37         booleanParam(defaultValue: true, description: '', name: 'SAVE_ARTIFACTS_ON_SMOKE_SUCCESS'),
38         booleanParam(defaultValue: true, description: '',  name: 'DO_BUILD'),
39         booleanParam(defaultValue: true, description: '', name: 'DO_INSTALL'),
40         booleanParam(defaultValue: true, description: '', name: 'DO_DOCKERPUSH'),
41         booleanParam(defaultValue: false, description: '', name: 'SAVE_ARTIFACTS_OVERRIDE'),
42         string(defaultValue: '/home/jenkins/hive/openstack-etsi.rc', description: '', name: 'HIVE_VIM_1'),
43         booleanParam(defaultValue: true, description: '', name: 'DO_ROBOT'),
44         string(defaultValue: 'sanity', description: 'sanity/regression/daily are the common options',
45                name: 'ROBOT_TAG_NAME'),
46         string(defaultValue: '/home/jenkins/hive/robot-systest.cfg', description: '', name: 'ROBOT_VIM'),
47         string(defaultValue: '/home/jenkins/hive/port-mapping-etsi-vim.yaml',
48                description: 'Port mapping file for SDN assist in ETSI VIM',
49                name: 'ROBOT_PORT_MAPPING_VIM'),
50         string(defaultValue: '/home/jenkins/hive/kubeconfig.yaml', description: '', name: 'KUBECONFIG'),
51         string(defaultValue: '/home/jenkins/hive/clouds.yaml', description: '', name: 'CLOUDS'),
52         string(defaultValue: 'Default', description: '', name: 'INSTALLER'),
53         string(defaultValue: '100.0', description: '% passed Robot tests to mark the build as passed',
54                name: 'ROBOT_PASS_THRESHOLD'),
55         string(defaultValue: '80.0', description: '% passed Robot tests to mark the build as unstable ' +
56                '(if lower, it will be failed)', name: 'ROBOT_UNSTABLE_THRESHOLD'),
57     ])
58 ])
59
60 ////////////////////////////////////////////////////////////////////////////////////////
61 // Helper Functions
62 ////////////////////////////////////////////////////////////////////////////////////////
63 void run_robot_systest(String tagName,
64                        String testName,
65                        String osmHostname,
66                        String prometheusHostname,
67                        Integer prometheusPort=null,
68                        String envfile=null,
69                        String portmappingfile=null,
70                        String kubeconfig=null,
71                        String clouds=null,
72                        String hostfile=null,
73                        String jujuPassword=null,
74                        String osmRSAfile=null,
75                        String passThreshold='0.0',
76                        String unstableThreshold='0.0') {
77     tempdir = sh(returnStdout: true, script: 'mktemp -d').trim()
78     String environmentFile = ''
79     if (envfile) {
80         environmentFile = envfile
81     } else {
82         sh(script: "touch ${tempdir}/env")
83         environmentFile = "${tempdir}/env"
84     }
85     PROMETHEUS_PORT_VAR = ''
86     if (prometheusPort != null) {
87         PROMETHEUS_PORT_VAR = "--env PROMETHEUS_PORT=${prometheusPort}"
88     }
89     hostfilemount = ''
90     if (hostfile) {
91         hostfilemount = "-v ${hostfile}:/etc/hosts"
92     }
93
94     JUJU_PASSWORD_VAR = ''
95     if (jujuPassword != null) {
96         JUJU_PASSWORD_VAR = "--env JUJU_PASSWORD=${jujuPassword}"
97     }
98
99     try {
100         sh("""docker run --env OSM_HOSTNAME=${osmHostname} --env PROMETHEUS_HOSTNAME=${prometheusHostname} \
101            ${PROMETHEUS_PORT_VAR} ${JUJU_PASSWORD_VAR} --env-file ${environmentFile} \
102            -v ${clouds}:/etc/openstack/clouds.yaml \
103            -v ${osmRSAfile}:/root/osm_id_rsa -v ${kubeconfig}:/root/.kube/config -v ${tempdir}:/robot-systest/reports \
104            -v ${portmappingfile}:/root/port-mapping.yaml ${hostfilemount} opensourcemano/tests:${tagName} \
105            -c -t ${testName}""")
106     } finally {
107         sh("cp ${tempdir}/* .")
108         outputDirectory = sh(returnStdout: true, script: 'pwd').trim()
109         println("Present Directory is : ${outputDirectory}")
110         step([
111             $class : 'RobotPublisher',
112             outputPath : "${outputDirectory}",
113             outputFileName : '*.xml',
114             disableArchiveOutput : false,
115             reportFileName : 'report.html',
116             logFileName : 'log.html',
117             passThreshold : passThreshold,
118             unstableThreshold: unstableThreshold,
119             otherFiles : '*.png',
120         ])
121     }
122 }
123
124 void archive_logs(Map remote) {
125
126     sshCommand remote: remote, command: '''mkdir -p logs'''
127     if (useCharmedInstaller) {
128         sshCommand remote: remote, command: '''
129             for container in `kubectl get pods -n osm | grep -v operator | grep -v NAME| awk '{print $1}'`; do
130                 logfile=`echo $container | cut -d- -f1`
131                 echo "Extracting log for $logfile"
132                 kubectl logs -n osm $container --timestamps=true 2>&1 > logs/$logfile.log
133             done
134         '''
135     } else {
136         sshCommand remote: remote, command: '''
137             for deployment in `kubectl -n osm get deployments | grep -v operator | grep -v NAME| awk '{print $1}'`; do
138                 echo "Extracting log for $deployment"
139                 kubectl -n osm logs deployments/$deployment --timestamps=true --all-containers 2>&1 \
140                 > logs/$deployment.log
141             done
142         '''
143         sshCommand remote: remote, command: '''
144             for statefulset in `kubectl -n osm get statefulsets | grep -v operator | grep -v NAME| awk '{print $1}'`; do
145                 echo "Extracting log for $statefulset"
146                 kubectl -n osm logs statefulsets/$statefulset --timestamps=true --all-containers 2>&1 \
147                 > logs/$statefulset.log
148             done
149         '''
150     }
151
152     sh 'rm -rf logs'
153     sshCommand remote: remote, command: '''ls -al logs'''
154     sshGet remote: remote, from: 'logs', into: '.', override: true
155     sh 'cp logs/* .'
156     archiveArtifacts artifacts: '*.log'
157 }
158
159 String get_value(String key, String output) {
160     for (String line : output.split( '\n' )) {
161         data = line.split( '\\|' )
162         if (data.length > 1) {
163             if ( data[1].trim() == key ) {
164                 return data[2].trim()
165             }
166         }
167     }
168 }
169
170 ////////////////////////////////////////////////////////////////////////////////////////
171 // Main Script
172 ////////////////////////////////////////////////////////////////////////////////////////
173 node("${params.NODE}") {
174
175     INTERNAL_DOCKER_REGISTRY = 'osm.etsi.org:5050/devops/cicd/'
176     INTERNAL_DOCKER_PROXY = 'http://172.21.1.1:5000'
177     APT_PROXY = 'http://172.21.1.1:3142'
178     SSH_KEY = '~/hive/cicd_rsa'
179     sh 'env'
180
181     tag_or_branch = params.GERRIT_BRANCH.replaceAll(/\./, '')
182
183     stage('Checkout') {
184         checkout scm
185     }
186
187     ci_helper = load 'jenkins/ci-pipelines/ci_helper.groovy'
188
189     def upstreamMainJob = params.UPSTREAM_SUFFIX
190
191     // upstream jobs always use merged artifacts
192     upstreamMainJob += '-merge'
193     containerNamePrefix = "osm-${tag_or_branch}"
194     containerName = "${containerNamePrefix}"
195
196     keep_artifacts = false
197     if ( JOB_NAME.contains('merge') ) {
198         containerName += '-merge'
199
200         // On a merge job, we keep artifacts on smoke success
201         keep_artifacts = params.SAVE_ARTIFACTS_ON_SMOKE_SUCCESS
202     }
203     containerName += "-${BUILD_NUMBER}"
204
205     server_id = null
206     http_server_name = null
207     devopstempdir = null
208     useCharmedInstaller = params.INSTALLER.equalsIgnoreCase('charmed')
209
210     try {
211         builtModules = [:]
212 ///////////////////////////////////////////////////////////////////////////////////////
213 // Fetch stage 2 .deb artifacts
214 ///////////////////////////////////////////////////////////////////////////////////////
215         stage('Copy Artifacts') {
216             // cleanup any previous repo
217             sh 'rm -rf repo'
218             dir('repo') {
219                 packageList = []
220                 dir("${RELEASE}") {
221                     RELEASE_DIR = sh(returnStdout:true,  script: 'pwd').trim()
222
223                     // check if an upstream artifact based on specific build number has been requested
224                     // This is the case of a merge build and the upstream merge build is not yet complete
225                     // (it is not deemed a successful build yet). The upstream job is calling this downstream
226                     // job (with the its build artifact)
227                     def upstreamComponent = ''
228                     if (params.UPSTREAM_JOB_NAME) {
229                         println("Fetching upstream job artifact from ${params.UPSTREAM_JOB_NAME}")
230                         lock('Artifactory') {
231                             step ([$class: 'CopyArtifact',
232                                 projectName: "${params.UPSTREAM_JOB_NAME}",
233                                 selector: [$class: 'SpecificBuildSelector',
234                                 buildNumber: "${params.UPSTREAM_JOB_NUMBER}"]
235                                 ])
236
237                             upstreamComponent = ci_helper.get_mdg_from_project(
238                                 ci_helper.get_env_value('build.env','GERRIT_PROJECT'))
239                             def buildNumber = ci_helper.get_env_value('build.env','BUILD_NUMBER')
240                             dir("$upstreamComponent") {
241                                 // the upstream job name contains suffix with the project. Need this stripped off
242                                 project_without_branch = params.UPSTREAM_JOB_NAME.split('/')[0]
243                                 packages = ci_helper.get_archive(params.ARTIFACTORY_SERVER,
244                                     upstreamComponent,
245                                     GERRIT_BRANCH,
246                                     "${project_without_branch} :: ${GERRIT_BRANCH}",
247                                     buildNumber)
248
249                                 packageList.addAll(packages)
250                                 println("Fetched pre-merge ${params.UPSTREAM_JOB_NAME}: ${packages}")
251                             }
252                         } // lock artifactory
253                     }
254
255                     parallelSteps = [:]
256                     list = ['RO', 'osmclient', 'IM', 'devops', 'MON', 'N2VC', 'NBI',
257                             'common', 'LCM', 'POL', 'NG-UI', 'PLA', 'tests']
258                     if (upstreamComponent.length() > 0) {
259                         println("Skipping upstream fetch of ${upstreamComponent}")
260                         list.remove(upstreamComponent)
261                     }
262                     for (buildStep in list) {
263                         def component = buildStep
264                         parallelSteps[component] = {
265                             dir("$component") {
266                                 println("Fetching artifact for ${component}")
267                                 step([$class: 'CopyArtifact',
268                                        projectName: "${component}${upstreamMainJob}/${GERRIT_BRANCH}"])
269
270                                 // grab the archives from the stage_2 builds
271                                 // (ie. this will be the artifacts stored based on a merge)
272                                 packages = ci_helper.get_archive(params.ARTIFACTORY_SERVER,
273                                     component,
274                                     GERRIT_BRANCH,
275                                     "${component}${upstreamMainJob} :: ${GERRIT_BRANCH}",
276                                     ci_helper.get_env_value('build.env', 'BUILD_NUMBER'))
277                                 packageList.addAll(packages)
278                                 println("Fetched ${component}: ${packages}")
279                                 sh 'rm -rf dists'
280                             }
281                         }
282                     }
283                     lock('Artifactory') {
284                         parallel parallelSteps
285                     }
286
287 ///////////////////////////////////////////////////////////////////////////////////////
288 // Create Devops APT repository
289 ///////////////////////////////////////////////////////////////////////////////////////
290                     sh 'mkdir -p pool'
291                     for (component in [ 'devops', 'IM', 'osmclient' ]) {
292                         sh "ls -al ${component}/pool/"
293                         sh "cp -r ${component}/pool/* pool/"
294                         sh "dpkg-sig --sign builder -k ${GPG_KEY_NAME} pool/${component}/*"
295                         sh "mkdir -p dists/${params.REPO_DISTRO}/${component}/binary-amd64/"
296                         sh("""apt-ftparchive packages pool/${component} \
297                            > dists/${params.REPO_DISTRO}/${component}/binary-amd64/Packages""")
298                         sh "gzip -9fk dists/${params.REPO_DISTRO}/${component}/binary-amd64/Packages"
299                     }
300
301                     // create and sign the release file
302                     sh "apt-ftparchive release dists/${params.REPO_DISTRO} > dists/${params.REPO_DISTRO}/Release"
303                     sh("""gpg --yes -abs -u ${GPG_KEY_NAME} \
304                        -o dists/${params.REPO_DISTRO}/Release.gpg dists/${params.REPO_DISTRO}/Release""")
305
306                     // copy the public key into the release folder
307                     // this pulls the key from the home dir of the current user (jenkins)
308                     sh "cp ~/${REPO_KEY_NAME} 'OSM ETSI Release Key.gpg'"
309                     sh "cp ~/${REPO_KEY_NAME} ."
310                 }
311
312                 // start an apache server to serve up the packages
313                 http_server_name = "${containerName}-apache"
314
315                 pwd = sh(returnStdout:true,  script: 'pwd').trim()
316                 repo_port = sh(script: 'echo $(python -c \'import socket; s=socket.socket(); s.bind(("", 0));' +
317                                'print(s.getsockname()[1]); s.close()\');',
318                                returnStdout: true).trim()
319                 repo_base_url = ci_helper.start_http_server(pwd, http_server_name, repo_port)
320                 NODE_IP_ADDRESS = sh(returnStdout: true, script:
321                     "echo ${SSH_CONNECTION} | awk '{print \$3}'").trim()
322             }
323
324             // Unpack devops package into temporary location so that we use it from upstream if it was part of a patch
325             osm_devops_dpkg = sh(returnStdout: true, script: 'find ./repo/release/pool/ -name osm-devops*.deb').trim()
326             devopstempdir = sh(returnStdout: true, script: 'mktemp -d').trim()
327             println("Extracting local devops package ${osm_devops_dpkg} into ${devopstempdir} for docker build step")
328             sh "dpkg -x ${osm_devops_dpkg} ${devopstempdir}"
329             OSM_DEVOPS = "${devopstempdir}/usr/share/osm-devops"
330             // Convert URLs from stage 2 packages to arguments that can be passed to docker build
331             for (remotePath in packageList) {
332                 packageName = remotePath[remotePath.lastIndexOf('/') + 1 .. -1]
333                 packageName = packageName[0 .. packageName.indexOf('_') - 1]
334                 builtModules[packageName] = remotePath
335             }
336         }
337
338 ///////////////////////////////////////////////////////////////////////////////////////
339 // Build docker containers
340 ///////////////////////////////////////////////////////////////////////////////////////
341         dir(OSM_DEVOPS) {
342             Map remote = [:]
343             error = null
344             if ( params.DO_BUILD ) {
345                 withCredentials([[$class: 'UsernamePasswordMultiBinding', credentialsId: 'gitlab-registry',
346                                 usernameVariable: 'USERNAME', passwordVariable: 'PASSWORD']]) {
347                     sh "docker login ${INTERNAL_DOCKER_REGISTRY} -u ${USERNAME} -p ${PASSWORD}"
348                 }
349                 datetime = sh(returnStdout: true, script: 'date +%Y-%m-%d:%H:%M:%S').trim()
350                 moduleBuildArgs = " --build-arg CACHE_DATE=${datetime}"
351                 for (packageName in builtModules.keySet()) {
352                     envName = packageName.replaceAll('-', '_').toUpperCase() + '_URL'
353                     moduleBuildArgs += " --build-arg ${envName}=" + builtModules[packageName]
354                 }
355                 dir('docker') {
356                     stage('Build') {
357                         containerList = sh(returnStdout: true, script:
358                             "find . -name Dockerfile -printf '%h\\n' | sed 's|\\./||'")
359                         containerList = Arrays.asList(containerList.split('\n'))
360                         print(containerList)
361                         parallelSteps = [:]
362                         for (buildStep in containerList) {
363                             def module = buildStep
364                             def moduleName = buildStep.toLowerCase()
365                             def moduleTag = containerName
366                             parallelSteps[module] = {
367                                 dir("$module") {
368                                     sh("""docker build --build-arg APT_PROXY=${APT_PROXY} \
369                                     -t opensourcemano/${moduleName}:${moduleTag} ${moduleBuildArgs} .""")
370                                     println("Tagging ${moduleName}:${moduleTag}")
371                                     sh("""docker tag opensourcemano/${moduleName}:${moduleTag} \
372                                     ${INTERNAL_DOCKER_REGISTRY}opensourcemano/${moduleName}:${moduleTag}""")
373                                     sh("""docker push \
374                                     ${INTERNAL_DOCKER_REGISTRY}opensourcemano/${moduleName}:${moduleTag}""")
375                                 }
376                             }
377                         }
378                         parallel parallelSteps
379                     }
380                 }
381             } // if (params.DO_BUILD)
382
383             if (params.DO_INSTALL) {
384 ///////////////////////////////////////////////////////////////////////////////////////
385 // Launch VM
386 ///////////////////////////////////////////////////////////////////////////////////////
387                 stage('Spawn Remote VM') {
388                     println('Launching new VM')
389                     output = sh(returnStdout: true, script: """#!/bin/sh -e
390                         for line in `grep OS ~/hive/robot-systest.cfg | grep -v OS_CLOUD` ; do export \$line ; done
391                         openstack server create --flavor osm.sanity \
392                                                 --image ${OPENSTACK_BASE_IMAGE} \
393                                                 --key-name CICD \
394                                                 --property build_url="${BUILD_URL}" \
395                                                 --nic net-id=osm-ext \
396                                                 ${containerName}
397                     """).trim()
398
399                     server_id = get_value('id', output)
400
401                     if (server_id == null) {
402                         println('VM launch output: ')
403                         println(output)
404                         throw new Exception('VM Launch failed')
405                     }
406                     println("Target VM is ${server_id}, waiting for IP address to be assigned")
407
408                     IP_ADDRESS = ''
409
410                     while (IP_ADDRESS == '') {
411                         output = sh(returnStdout: true, script: """#!/bin/sh -e
412                             for line in `grep OS ~/hive/robot-systest.cfg | grep -v OS_CLOUD` ; do export \$line ; done
413                             openstack server show ${server_id}
414                         """).trim()
415                         IP_ADDRESS = get_value('addresses', output)
416                     }
417                     IP_ADDRESS = IP_ADDRESS.split('=')[1]
418                     println("Waiting for VM at ${IP_ADDRESS} to be reachable")
419
420                     alive = false
421                     while (!alive) {
422                         output = sh(returnStdout: true, script: "sleep 1 ; nc -zv ${IP_ADDRESS} 22 2>&1 || true").trim()
423                         println("output is [$output]")
424                         alive = output.contains('succeeded')
425                     }
426                     println('VM is ready and accepting ssh connections')
427                 } // stage("Spawn Remote VM")
428
429 ///////////////////////////////////////////////////////////////////////////////////////
430 // Installation
431 ///////////////////////////////////////////////////////////////////////////////////////
432                 stage('Install') {
433                     commit_id = ''
434                     repo_distro = ''
435                     repo_key_name = ''
436                     release = ''
437
438                     if (params.COMMIT_ID) {
439                         commit_id = "-b ${params.COMMIT_ID}"
440                     }
441                     if (params.REPO_DISTRO) {
442                         repo_distro = "-r ${params.REPO_DISTRO}"
443                     }
444                     if (params.REPO_KEY_NAME) {
445                         repo_key_name = "-k ${params.REPO_KEY_NAME}"
446                     }
447                     if (params.RELEASE) {
448                         release = "-R ${params.RELEASE}"
449                     }
450                     if (params.REPOSITORY_BASE) {
451                         repo_base_url = "-u ${params.REPOSITORY_BASE}"
452                     } else {
453                         repo_base_url = "-u http://${NODE_IP_ADDRESS}:${repo_port}"
454                     }
455
456                     remote.with {
457                         name = containerName
458                         host = IP_ADDRESS
459                         user = 'ubuntu'
460                         identityFile = SSH_KEY
461                         allowAnyHosts = true
462                         logLevel = 'INFO'
463                         pty = true
464                     }
465
466                     // Force time sync to avoid clock drift and invalid certificates
467                     sshCommand remote: remote, command: '''
468                         sudo apt update
469                         sudo apt install -y ntp
470                         sudo service ntp stop
471                         sudo ntpd -gq
472                         sudo service ntp start
473                     '''
474
475                     sshCommand remote: remote, command: '''
476                         wget https://osm-download.etsi.org/ftp/osm-11.0-eleven/install_osm.sh
477                         chmod +x ./install_osm.sh
478                         sed -i '1 i\\export PATH=/snap/bin:\$PATH' ~/.bashrc
479                     '''
480
481                     Map gitlabCredentialsMap = [$class: 'UsernamePasswordMultiBinding',
482                                                 credentialsId: 'gitlab-registry',
483                                                 usernameVariable: 'USERNAME',
484                                                 passwordVariable: 'PASSWORD']
485                     if (useCharmedInstaller) {
486                         // Use local proxy for docker hub
487                         sshCommand remote: remote, command: '''
488                             sudo snap install microk8s --classic --channel=1.19/stable
489                             sudo sed -i "s|https://registry-1.docker.io|http://172.21.1.1:5000|" \
490                             /var/snap/microk8s/current/args/containerd-template.toml
491                             sudo systemctl restart snap.microk8s.daemon-containerd.service
492                             sudo snap alias microk8s.kubectl kubectl
493                         '''
494
495                         withCredentials([gitlabCredentialsMap]) {
496                             sshCommand remote: remote, command: """
497                                 ./install_osm.sh -y \
498                                     ${repo_base_url} \
499                                     ${repo_key_name} \
500                                     ${release} -r unstable \
501                                     --charmed  \
502                                     --registry ${USERNAME}:${PASSWORD}@${INTERNAL_DOCKER_REGISTRY} \
503                                     --tag ${containerName}
504                             """
505                         }
506                         prometheusHostname = "prometheus.${IP_ADDRESS}.nip.io"
507                         prometheusPort = 80
508                         osmHostname = "nbi.${IP_ADDRESS}.nip.io:443"
509                     } else {
510                         // Run -k8s installer here specifying internal docker registry and docker proxy
511                         withCredentials([gitlabCredentialsMap]) {
512                             sshCommand remote: remote, command: """
513                                 ./install_osm.sh -y \
514                                     ${repo_base_url} \
515                                     ${repo_key_name} \
516                                     ${release} -r unstable \
517                                     -d ${USERNAME}:${PASSWORD}@${INTERNAL_DOCKER_REGISTRY} \
518                                     -p ${INTERNAL_DOCKER_PROXY} \
519                                     -t ${containerName}
520                             """
521                         }
522                         prometheusHostname = IP_ADDRESS
523                         prometheusPort = 9091
524                         osmHostname = IP_ADDRESS
525                     }
526                 } // stage("Install")
527 ///////////////////////////////////////////////////////////////////////////////////////
528 // Health check of installed OSM in remote vm
529 ///////////////////////////////////////////////////////////////////////////////////////
530                 stage('OSM Health') {
531                     stackName = 'osm'
532                     sshCommand remote: remote, command: """
533                         /usr/share/osm-devops/installers/osm_health.sh -k -s ${stackName}
534                     """
535                 } // stage("OSM Health")
536             } // if ( params.DO_INSTALL )
537
538
539 ///////////////////////////////////////////////////////////////////////////////////////
540 // Execute Robot tests
541 ///////////////////////////////////////////////////////////////////////////////////////
542             stage_archive = false
543             if ( params.DO_ROBOT ) {
544                 try {
545                     stage('System Integration Test') {
546                         if (useCharmedInstaller) {
547                             tempdir = sh(returnStdout: true, script: 'mktemp -d').trim()
548                             sh(script: "touch ${tempdir}/hosts")
549                             hostfile = "${tempdir}/hosts"
550                             sh """cat << EOF > ${hostfile}
551 127.0.0.1           localhost
552 ${remote.host}      prometheus.${remote.host}.nip.io nbi.${remote.host}.nip.io
553 EOF"""
554                         } else {
555                             hostfile = null
556                         }
557
558                         jujuPassword = sshCommand remote: remote, command: '''
559                             echo `juju gui 2>&1 | grep password | cut -d: -f2`
560                         '''
561
562                         run_robot_systest(
563                             containerName,
564                             params.ROBOT_TAG_NAME,
565                             osmHostname,
566                             prometheusHostname,
567                             prometheusPort,
568                             params.ROBOT_VIM,
569                             params.ROBOT_PORT_MAPPING_VIM,
570                             params.KUBECONFIG,
571                             params.CLOUDS,
572                             hostfile,
573                             jujuPassword,
574                             SSH_KEY,
575                             params.ROBOT_PASS_THRESHOLD,
576                             params.ROBOT_UNSTABLE_THRESHOLD
577                         )
578                     } // stage("System Integration Test")
579                 } finally {
580                     stage('Archive Container Logs') {
581                         // Archive logs to containers_logs.txt
582                         archive_logs(remote)
583                         if (currentBuild.result != 'FAILURE') {
584                             stage_archive = keep_artifacts
585                         } else {
586                             println('Systest test failed, throwing error')
587                             error = new Exception('Systest test failed')
588                             currentBuild.result = 'FAILURE'
589                             throw error
590                         }
591                     }
592                 }
593             } // if ( params.DO_ROBOT )
594
595             if (params.SAVE_ARTIFACTS_OVERRIDE || stage_archive) {
596                 stage('Archive') {
597                     sh "echo ${containerName} > build_version.txt"
598                     archiveArtifacts artifacts: 'build_version.txt', fingerprint: true
599
600                     // Archive the tested repo
601                     dir("${RELEASE_DIR}") {
602                         ci_helper.archive(params.ARTIFACTORY_SERVER, RELEASE, GERRIT_BRANCH, 'tested')
603                     }
604                     if (params.DO_DOCKERPUSH) {
605                         stage('Publish to Dockerhub') {
606                             parallelSteps = [:]
607                             for (buildStep in containerList) {
608                                 module = buildStep
609                                 moduleName = buildStep.toLowerCase()
610                                 dockerTag = params.DOCKER_TAG
611                                 moduleTag = containerName
612
613                                 parallelSteps[module] = {
614                                     dir("$module") {
615                                         sh("""docker tag opensourcemano/${moduleName}:${moduleTag} \
616                                            opensourcemano/${moduleName}:${dockerTag}""")
617                                         sh "docker push opensourcemano/${moduleName}:${dockerTag}"
618                                     }
619                                 }
620                             }
621                             parallel parallelSteps
622                         }
623
624                         stage('Snap promotion') {
625                             snaps = ['osmclient']
626                             sh 'snapcraft login --with ~/.snapcraft/config'
627                             for (snap in snaps) {
628                                 channel = 'latest/'
629                                 if (BRANCH_NAME.startsWith('v')) {
630                                     channel = BRANCH_NAME.substring(1) + '/'
631                                 } else if (BRANCH_NAME != 'master') {
632                                     channel += '/' + BRANCH_NAME.replaceAll('/', '-')
633                                 }
634                                 track = channel + 'edge\\*'
635                                 edge_rev = sh(returnStdout: true,
636                                     script: "snapcraft revisions $snap | " +
637                                     "grep \"$track\" | tail -1 | awk '{print \$1}'").trim()
638                                 print "edge rev is $edge_rev"
639                                 track = channel + 'beta\\*'
640                                 beta_rev = sh(returnStdout: true,
641                                     script: "snapcraft revisions $snap | " +
642                                     "grep \"$track\" | tail -1 | awk '{print \$1}'").trim()
643                                 print "beta rev is $beta_rev"
644
645                                 if (edge_rev != beta_rev) {
646                                     print "Promoting $edge_rev to beta in place of $beta_rev"
647                                     beta_track = channel + 'beta'
648                                     sh "snapcraft release $snap $edge_rev $beta_track"
649                                 }
650                             }
651                         } // stage('Snap promotion')
652                     } // if (params.DO_DOCKERPUSH)
653                 } // stage('Archive')
654             } // if (params.SAVE_ARTIFACTS_OVERRIDE || stage_archive)
655         } // dir(OSM_DEVOPS)
656     } finally {
657         if ( params.DO_INSTALL && server_id != null) {
658             delete_vm = true
659             if (error && params.SAVE_CONTAINER_ON_FAIL ) {
660                 delete_vm = false
661             }
662             if (!error && params.SAVE_CONTAINER_ON_PASS ) {
663                 delete_vm = false
664             }
665
666             if ( delete_vm ) {
667                 if (server_id != null) {
668                     println("Deleting VM: $server_id")
669                     sh """#!/bin/sh -e
670                         for line in `grep OS ~/hive/robot-systest.cfg | grep -v OS_CLOUD` ; do export \$line ; done
671                         openstack server delete ${server_id}
672                     """
673                 } else {
674                     println("Saved VM $server_id in ETSI VIM")
675                 }
676             }
677         }
678         if ( http_server_name != null ) {
679             sh "docker stop ${http_server_name} || true"
680             sh "docker rm ${http_server_name} || true"
681         }
682
683         if ( devopstempdir != null ) {
684             sh "rm -rf ${devopstempdir}"
685         }
686     }
687 }