Update RS docker image tags (Release 5.5.0) #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This GitHub workflow will automatically update docker image tags of rs-depl in the datakaveri/iudx-deployment repository files, whenever a docker image is pushed to ghcr.io/datakaveri/rs-depl for the release (5.5.0) branch. | |
name: Update RS docker image tags (Release 5.5.0) | |
# Trigger the workflow whenever a new package is published to the registry | |
on: | |
registry_package: | |
types: [published] | |
permissions: | |
packages: read | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
repository: datakaveri/iudx-deployment | |
token: "${{ secrets.JENKINS_UPDATE }}" | |
fetch-depth: 0 | |
# Update RS Server docker image tags for release branch 5.5.0 | |
- name: Update RS docker image tags for release branch 5.5.0 | |
env: | |
GH_TOKEN: ${{ secrets.JENKINS_UPDATE }} | |
run: | | |
# Get the latest version of 5.5.0 tags from the container registry using GitHub API | |
export newtag5_5_0=$(head -n1 <(curl -H "Accept: application/vnd.github+json" -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" https://api.github.com/orgs/datakaveri/packages/container/rs-depl/versions | jq ' .[].metadata.container.tags[0]' | grep 5.5.0 | grep -v alpha | sed -e 's/^"//' -e 's/"$//')) | |
# Get the old tag from the YAML file | |
export oldtag5_5_0=$(yq -r .services.rs.image Docker-Swarm-deployment/single-node/resource-server/rs-stack.yaml | cut -d : -f 2) | |
# Set Git user | |
git config --global user.name 'jenkins-datakaveri' | |
git config --global user.email "[email protected]" | |
# Update the YAML files and create a new branch for the tag update | |
if [ "$newtag5_5_0" != "$oldtag5_5_0" ] | |
then | |
git checkout 5.5.0 | |
git checkout -b rs-5.5.0-automatic-updates/$newtag5_5_0 | |
# Replace old tag with new tag in the rs-stack.yaml file | |
sed -i s/$oldtag5_5_0/$newtag5_5_0/g Docker-Swarm-deployment/single-node/resource-server/rs-stack.yaml | |
# Update version in Chart.yaml and values.yaml | |
export oldappversion=$(yq -r .version K8s-deployment/Charts/resource-server/Chart.yaml) | |
export newappversion=$(yq -r .version K8s-deployment/Charts/resource-server/Chart.yaml | awk -F. -v OFS=. 'NF==1{print ++$NF}; NF>1{if(length($NF+1)>length($NF))$(NF-1)++; $NF=sprintf("%0*d", length($NF), ($NF+1)%(10^length($NF))); print}') | |
sed -i s/$oldappversion/$newappversion/g K8s-deployment/Charts/resource-server/Chart.yaml | |
sed -i s/$oldtag5_5_0/$newtag5_5_0/g K8s-deployment/Charts/resource-server/values.yaml | |
git add Docker-Swarm-deployment/single-node/resource-server/rs-stack.yaml K8s-deployment/Charts/resource-server/values.yaml K8s-deployment/Charts/resource-server/Chart.yaml | |
git commit --allow-empty -m "Updated RS docker image tag to $newtag5_5_0" | |
git push --set-upstream origin rs-5.5.0-automatic-updates/$newtag5_5_0 | |
# Create a new pull request for the 5.5.0 branch | |
gh pr create -R datakaveri/iudx-deployment --base 5.5.0 --fill | |
fi |