blob: 358cd7412ee54a96920e7df72dd4751b29cf58b7 [file] [log] [blame]
vegall427cdb22024-06-13 15:59:43 +00001#!/bin/bash
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14#
15
garciadeblas8d4c2492025-03-12 11:16:36 +010016if [ "$#" -ne 2 ]; then
vegall427cdb22024-06-13 15:59:43 +000017 echo "Usage: $0 <NEW_VERSION> <USER>"
garciadeblas8d4c2492025-03-12 11:16:36 +010018 echo "Example: $0 16.0.0 garciadeblas"
19 echo "Example: $0 15.0.7 vegall"
vegall427cdb22024-06-13 15:59:43 +000020 exit 1
21fi
22
23NEW_VERSION="$1"
24USER="$2"
25REPO_URL="ssh://$USER@osm.etsi.org:29418/osm/devops"
garciadeblas8d4c2492025-03-12 11:16:36 +010026# If the $NEW_VERSION == 15.0.1, the $BRANCH_NAME will be v15.0
27BRANCH_NAME="v$(echo $NEW_VERSION | grep -oE '[0-9]+\.[0-9]+')"
vegall427cdb22024-06-13 15:59:43 +000028
garciadeblas8d4c2492025-03-12 11:16:36 +010029git clone $REPO_URL && (cd "devops" && curl https://osm.etsi.org/gerrit/tools/hooks/commit-msg > .git/hooks/commit-msg ; chmod +x .git/hooks/commit-msg)
30pushd devops
vegall427cdb22024-06-13 15:59:43 +000031
32git checkout $BRANCH_NAME
33
garciadeblas8d4c2492025-03-12 11:16:36 +010034sed -i -E "0,/^version: .*/s//version: \"$NEW_VERSION\"/" installers/helm/osm/Chart.yaml
vegall427cdb22024-06-13 15:59:43 +000035sed -i -E "0,/^appVersion: .*/s//appVersion: \"$NEW_VERSION\"/" installers/helm/osm/Chart.yaml
36
37git add installers/helm/osm/Chart.yaml
garciadeblas8d4c2492025-03-12 11:16:36 +010038git commit -s -m "Update chart version version to $NEW_VERSION"
vegall427cdb22024-06-13 15:59:43 +000039git push origin $BRANCH_NAME
40
41commit=$(git show --summary | grep commit | awk '{print $2}')
garciadeblas8d4c2492025-03-12 11:16:36 +010042echo "The commit is $commit"
43popd
44rm -rf devops
45