Joey Armstrong | 97643b3 | 2022-11-14 17:33:27 -0500 | [diff] [blame] | 1 | #!/usr/bin/env groovy |
Joey Armstrong | 379660e | 2022-12-14 19:21:00 -0500 | [diff] [blame] | 2 | // ----------------------------------------------------------------------- |
Joey Armstrong | af679da | 2023-01-31 14:22:41 -0500 | [diff] [blame] | 3 | // Copyright 2021-2023 Open Networking Foundation (ONF) and the ONF Contributors |
| 4 | // |
| 5 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | // you may not use this file except in compliance with the License. |
| 7 | // You may obtain 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, |
| 13 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | // See the License for the specific language governing permissions and |
| 15 | // limitations under the License. |
| 16 | // ----------------------------------------------------------------------- |
Joey Armstrong | 379660e | 2022-12-14 19:21:00 -0500 | [diff] [blame] | 17 | // Install the voltctl command by branch name "voltha-xx" |
| 18 | // ----------------------------------------------------------------------- |
Joey Armstrong | 97643b3 | 2022-11-14 17:33:27 -0500 | [diff] [blame] | 19 | |
Joey Armstrong | 379660e | 2022-12-14 19:21:00 -0500 | [diff] [blame] | 20 | // ----------------------------------------------------------------------- |
| 21 | // ----------------------------------------------------------------------- |
Joey Armstrong | 97af219 | 2023-09-05 17:06:41 -0400 | [diff] [blame] | 22 | String getIam(String func) { |
Joey Armstrong | 379660e | 2022-12-14 19:21:00 -0500 | [diff] [blame] | 23 | // Cannot rely on a stack trace due to jenkins manipulation |
| 24 | String src = 'vars/installVoltctl.groovy' |
| 25 | String iam = [src, func].join('::') |
| 26 | return iam |
| 27 | } |
| 28 | |
| 29 | // ----------------------------------------------------------------------- |
Joey Armstrong | 97af219 | 2023-09-05 17:06:41 -0400 | [diff] [blame] | 30 | // Intent: Log progress message |
| 31 | // ----------------------------------------------------------------------- |
| 32 | void enter(String name) { |
| 33 | // Announce ourselves for log usability |
| 34 | String iam = getIam(name) |
| 35 | println("${iam}: ENTER") |
| 36 | return |
| 37 | } |
| 38 | |
| 39 | // ----------------------------------------------------------------------- |
| 40 | // Intent: Log progress message |
| 41 | // ----------------------------------------------------------------------- |
| 42 | void leave(String name) { |
| 43 | // Announce ourselves for log usability |
| 44 | String iam = getIam(name) |
| 45 | println("${iam}: LEAVE") |
| 46 | return |
| 47 | } |
| 48 | |
| 49 | // ----------------------------------------------------------------------- |
Jan Klare | 1ba6746 | 2023-09-28 13:34:55 +0200 | [diff] [blame] | 50 | // Intent: Add host entries to /etc/hosts to allow resolving the virtual hosts |
| 51 | // used to expose the voltha api (voltha.voltha.local) and etcd |
| 52 | // (voltha-infra.local) inside of k8s via ingress to localhost |
| 53 | // ----------------------------------------------------------------------- |
| 54 | void setHostEntries() { |
| 55 | enter('setHostEntries') |
| 56 | |
| 57 | sh( |
| 58 | label : 'setHostEntries', |
| 59 | script: """#!/usr/bin/env bash |
| 60 | for hostname in voltha.voltha.local voltha-infra.local; do |
| 61 | if grep \$hostname /etc/hosts; then |
| 62 | echo "host entry for \$hostname already exists" |
| 63 | else |
| 64 | echo "adding host entry for \$hostname" |
| 65 | sed -i "s/127.0.0.1 localhost/& \$hostname/" /etc/hosts |
| 66 | fi |
| 67 | done |
| 68 | """) |
| 69 | |
| 70 | leave('setHostEntries') |
| 71 | return |
| 72 | } |
| 73 | |
| 74 | // ----------------------------------------------------------------------- |
Joey Armstrong | 379660e | 2022-12-14 19:21:00 -0500 | [diff] [blame] | 75 | // ----------------------------------------------------------------------- |
Joey Armstrong | 97af219 | 2023-09-05 17:06:41 -0400 | [diff] [blame] | 76 | Boolean process(String branch) { |
| 77 | Boolean ans = true |
| 78 | enter('process') |
Joey Armstrong | 299f1f3 | 2022-11-24 08:45:25 -0500 | [diff] [blame] | 79 | |
Joey Armstrong | 97643b3 | 2022-11-14 17:33:27 -0500 | [diff] [blame] | 80 | // This logic seems odd given we branch & tag repositories |
| 81 | // for release so hilight non-frozen until we know for sure. |
Joey Armstrong | e0ed035 | 2023-09-05 19:00:50 -0400 | [diff] [blame] | 82 | def released = [ |
Joey Armstrong | 9d35c0f | 2023-08-25 21:35:54 -0400 | [diff] [blame] | 83 | // v1.9.1 - https://github.com/opencord/voltctl/releases/tag/untagged-cd611c39178f25b95a87 |
| 84 | 'voltha-2.12' : '1.8.45', |
| 85 | 'voltha-2.11' : '1.8.45', |
| 86 | // https://github.com/opencord/voltctl/releases/tag/v1.7.6 |
| 87 | 'voltha-2.10' : '1.7.6', |
| 88 | 'voltha-2.9' : '1.7.4', |
| 89 | 'voltha-2.8' : '1.6.11', |
Joey Armstrong | 97643b3 | 2022-11-14 17:33:27 -0500 | [diff] [blame] | 90 | ] |
Matteo Scandolo | b47a6fd | 2021-10-27 17:02:49 -0700 | [diff] [blame] | 91 | |
Joey Armstrong | 97643b3 | 2022-11-14 17:33:27 -0500 | [diff] [blame] | 92 | boolean have_released = released.containsKey(branch) |
| 93 | boolean is_release = false |
| 94 | // TODO: Enable with parameter: RELEASE_VOLTHA= |
| 95 | boolean has_binding = binding.hasVariable('WORKSPACE') |
Matteo Scandolo | b47a6fd | 2021-10-27 17:02:49 -0700 | [diff] [blame] | 96 | |
Joey Armstrong | 97643b3 | 2022-11-14 17:33:27 -0500 | [diff] [blame] | 97 | // WIP: Probe to find out what is available |
Joey Armstrong | 96158a9 | 2022-11-25 10:36:06 -0500 | [diff] [blame] | 98 | print(""" |
| 99 | ** have_released: ${have_released} |
| 100 | ** has_binding: ${has_binding} |
| 101 | """) |
Matteo Scandolo | b47a6fd | 2021-10-27 17:02:49 -0700 | [diff] [blame] | 102 | |
Joey Armstrong | 97643b3 | 2022-11-14 17:33:27 -0500 | [diff] [blame] | 103 | // --------------------------------------------- |
| 104 | // Sanity check: released version must be frozen |
| 105 | // --------------------------------------------- |
| 106 | if (is_release && ! released.containsKey(branch)) { |
Joey Armstrong | 9d35c0f | 2023-08-25 21:35:54 -0400 | [diff] [blame] | 107 | // Fingers crossed: jenkins may rewrite the callstack. |
Joey Armstrong | 97af219 | 2023-09-05 17:06:41 -0400 | [diff] [blame] | 108 | String myname = this.class.getName() |
Joey Armstrong | 97643b3 | 2022-11-14 17:33:27 -0500 | [diff] [blame] | 109 | |
Joey Armstrong | 9d35c0f | 2023-08-25 21:35:54 -0400 | [diff] [blame] | 110 | String url = [ |
| 111 | 'https://docs.voltha.org/master', |
| 112 | 'howto/release/installVoltctl.html', |
| 113 | ].join('/') |
Joey Armstrong | 97643b3 | 2022-11-14 17:33:27 -0500 | [diff] [blame] | 114 | |
Joey Armstrong | 9d35c0f | 2023-08-25 21:35:54 -0400 | [diff] [blame] | 115 | String error = [ |
Joey Armstrong | 97af219 | 2023-09-05 17:06:41 -0400 | [diff] [blame] | 116 | myname, 'ERROR:', |
Joey Armstrong | 9d35c0f | 2023-08-25 21:35:54 -0400 | [diff] [blame] | 117 | "Detected release version=[$branch]", |
Joey Armstrong | 97af219 | 2023-09-05 17:06:41 -0400 | [diff] [blame] | 118 | 'but voltctl is not frozen.', |
Joey Armstrong | 9d35c0f | 2023-08-25 21:35:54 -0400 | [diff] [blame] | 119 | '', |
Joey Armstrong | 97af219 | 2023-09-05 17:06:41 -0400 | [diff] [blame] | 120 | 'See Also:', url, |
Joey Armstrong | 9d35c0f | 2023-08-25 21:35:54 -0400 | [diff] [blame] | 121 | ].join(' ') |
Joey Armstrong | 97af219 | 2023-09-05 17:06:41 -0400 | [diff] [blame] | 122 | throw new Exception(error) // groovylint-disable-line ThrowException |
Joey Armstrong | 97643b3 | 2022-11-14 17:33:27 -0500 | [diff] [blame] | 123 | } |
| 124 | |
| 125 | // -------------------------------- |
| 126 | // General answer: latest available |
| 127 | // -------------------------------- |
| 128 | if (! have_released) { |
Joey Armstrong | 9d35c0f | 2023-08-25 21:35:54 -0400 | [diff] [blame] | 129 | url = 'https://api.github.com/repos/opencord/voltctl/releases/latest' |
| 130 | get_version = [ |
| 131 | "curl -sSL ${url}", |
Joey Armstrong | 97af219 | 2023-09-05 17:06:41 -0400 | [diff] [blame] | 132 | 'jq -r .tag_name', |
Joey Armstrong | 9d35c0f | 2023-08-25 21:35:54 -0400 | [diff] [blame] | 133 | "sed -e 's/^v//g'", |
| 134 | ].join(' | ') |
| 135 | |
| 136 | print(" ** RUNNING: ${get_version}") |
Joey Armstrong | 97af219 | 2023-09-05 17:06:41 -0400 | [diff] [blame] | 137 | released[branch] = sh( |
Joey Armstrong | 9d35c0f | 2023-08-25 21:35:54 -0400 | [diff] [blame] | 138 | script: get_version, |
| 139 | returnStdout: true |
| 140 | ).trim() |
Joey Armstrong | 97643b3 | 2022-11-14 17:33:27 -0500 | [diff] [blame] | 141 | } |
| 142 | |
| 143 | voltctlVersion = released[branch] |
| 144 | println "Installing voltctl version ${voltctlVersion} on branch ${branch}" |
| 145 | |
| 146 | // ----------------------------------------------------------------------- |
| 147 | // groovy expansion: ${var} |
| 148 | // shell expansion: \${var} |
| 149 | // ----------------------------------------------------------------------- |
Joey Armstrong | 97af219 | 2023-09-05 17:06:41 -0400 | [diff] [blame] | 150 | sh( |
| 151 | label : 'Install Voltctl', |
| 152 | returnStdout: false, |
| 153 | script: """#!/bin/bash |
Joey Armstrong | 97643b3 | 2022-11-14 17:33:27 -0500 | [diff] [blame] | 154 | |
Joey Armstrong | 97af219 | 2023-09-05 17:06:41 -0400 | [diff] [blame] | 155 | # set -eu -o pipefail |
Joey Armstrong | 97643b3 | 2022-11-14 17:33:27 -0500 | [diff] [blame] | 156 | |
| 157 | bin_voltctl="$WORKSPACE/bin/voltctl" |
| 158 | |
| 159 | mkdir -p "$WORKSPACE/bin" |
| 160 | cd "$WORKSPACE" || { echo "ERROR: cd $WORKSPACE failed"; exit 1; } |
| 161 | |
| 162 | HOSTOS="\$(uname -s | tr '[:upper:]' '[:lower:]')" |
| 163 | HOSTARCH="\$(uname -m | tr '[:upper:]' '[:lower:]')" |
| 164 | if [ "\$HOSTARCH" == "x86_64" ]; then |
Hardik Windlass | 9658cd2 | 2021-10-25 11:13:25 +0000 | [diff] [blame] | 165 | HOSTARCH="amd64" |
| 166 | fi |
Joey Armstrong | 97643b3 | 2022-11-14 17:33:27 -0500 | [diff] [blame] | 167 | |
| 168 | # Retrieve versioned voltctl binary |
| 169 | download_url="https://github.com/opencord/voltctl/releases/download" |
| 170 | vol_ver="v${voltctlVersion}" |
| 171 | vol_name="voltctl-${voltctlVersion}-\${HOSTOS}-\${HOSTARCH}" |
Joey Armstrong | b2f8981 | 2022-11-24 08:09:40 -0500 | [diff] [blame] | 172 | curl -o "\$bin_voltctl" -sSL "\${download_url}/\${vol_ver}/\${vol_name}" |
Joey Armstrong | 97643b3 | 2022-11-14 17:33:27 -0500 | [diff] [blame] | 173 | |
Joey Armstrong | a935e71 | 2022-11-24 08:03:15 -0500 | [diff] [blame] | 174 | chmod u=rwx,go=rx "\$bin_voltctl" |
Joey Armstrong | 97643b3 | 2022-11-14 17:33:27 -0500 | [diff] [blame] | 175 | |
Joey Armstrong | 379660e | 2022-12-14 19:21:00 -0500 | [diff] [blame] | 176 | # --------------------------------------------------------- |
| 177 | # /usr/local/bin/voltctl --version != bin/voltctl --version |
| 178 | # Problem when default searchpath has not been modified. |
| 179 | # --------------------------------------------------------- |
Joey Armstrong | a935e71 | 2022-11-24 08:03:15 -0500 | [diff] [blame] | 180 | "\${bin_voltctl}" version --clientonly |
Hardik Windlass | 9658cd2 | 2021-10-25 11:13:25 +0000 | [diff] [blame] | 181 | voltctl version --clientonly |
Joey Armstrong | 97af219 | 2023-09-05 17:06:41 -0400 | [diff] [blame] | 182 | """) |
Joey Armstrong | 299f1f3 | 2022-11-24 08:45:25 -0500 | [diff] [blame] | 183 | |
Roger Luethi | 218b853 | 2023-09-28 14:19:50 +0200 | [diff] [blame] | 184 | sh( |
| 185 | label : 'Write /home/jenkins/.volt/config', |
| 186 | returnStdout: false, |
| 187 | script: """#!/bin/bash |
| 188 | |
| 189 | bin_voltctl="$WORKSPACE/bin/voltctl" |
| 190 | |
| 191 | mkdir -p "/home/jenkins/.volt" |
| 192 | rm -f "/home/jenkins/.volt/config" |
| 193 | "\${bin_voltctl}" config > "/home/jenkins/.volt/config" |
| 194 | """) |
| 195 | |
Roger Luethi | ff337d8 | 2023-09-20 12:09:44 +0200 | [diff] [blame] | 196 | leave('process') |
Joey Armstrong | 97af219 | 2023-09-05 17:06:41 -0400 | [diff] [blame] | 197 | return(ans) |
Hardik Windlass | 9658cd2 | 2021-10-25 11:13:25 +0000 | [diff] [blame] | 198 | } |
Joey Armstrong | 97643b3 | 2022-11-14 17:33:27 -0500 | [diff] [blame] | 199 | |
Joey Armstrong | 379660e | 2022-12-14 19:21:00 -0500 | [diff] [blame] | 200 | // ----------------------------------------------------------------------- |
| 201 | // ----------------------------------------------------------------------- |
Joey Armstrong | 97af219 | 2023-09-05 17:06:41 -0400 | [diff] [blame] | 202 | def call(String branch) { |
| 203 | try { |
| 204 | enter('main') |
Jan Klare | 1ba6746 | 2023-09-28 13:34:55 +0200 | [diff] [blame] | 205 | setHostEntries() |
Joey Armstrong | 9d35c0f | 2023-08-25 21:35:54 -0400 | [diff] [blame] | 206 | process(branch) |
Joey Armstrong | 379660e | 2022-12-14 19:21:00 -0500 | [diff] [blame] | 207 | } |
Joey Armstrong | 97af219 | 2023-09-05 17:06:41 -0400 | [diff] [blame] | 208 | catch (Exception err) { // groovylint-disable-line CatchException |
| 209 | String iam = getIam('main') |
Joey Armstrong | 9d35c0f | 2023-08-25 21:35:54 -0400 | [diff] [blame] | 210 | println("** ${iam}: EXCEPTION ${err}") |
| 211 | throw err |
Joey Armstrong | 379660e | 2022-12-14 19:21:00 -0500 | [diff] [blame] | 212 | } |
Joey Armstrong | 97af219 | 2023-09-05 17:06:41 -0400 | [diff] [blame] | 213 | finally { |
| 214 | leave('main') |
Joey Armstrong | 379660e | 2022-12-14 19:21:00 -0500 | [diff] [blame] | 215 | } |
| 216 | return |
| 217 | } |
| 218 | |
Joey Armstrong | 97643b3 | 2022-11-14 17:33:27 -0500 | [diff] [blame] | 219 | // [EOF] |