Update CAT docker image tags (Master) #145
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 cat-prod in the datakaveri/iudx-deployment repository files, whenever docker image is pushed to ghcr.io/datakaveri/cat-prod. It will update the master/latest branch if the tag is 5.6.0-alpha. | |
name: Update CAT docker image tags (Master) | |
# This trigger will run the workflow whenever a new package is published to the registry | |
on: | |
registry_package: | |
types: [published] | |
# This is needed to read the registry packages | |
permissions: | |
packages: read | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
repository: datakaveri/iudx-deployment | |
# Jenkins token to perform git operations | |
token: "${{ secrets.JENKINS_UPDATE }}" | |
fetch-depth: 0 | |
# This step updates the CAT Server docker image tags | |
- name: Update CAT docker image tags | |
env: | |
GH_TOKEN: ${{ secrets.JENKINS_UPDATE}} | |
run: | | |
# Get the latest version of 5.6.0-alpha tags from the container registry using GitHub API | |
export newtag5_6_0=`(head -n 1 <(curl -H "Accept: application/vnd.github+json" -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" https://api.github.com/orgs/datakaveri/packages/container/cat-prod/versions | jq ' .[].metadata.container.tags[0]' | grep 5.6.0-alpha | sed -e 's/^"//' -e 's/"$//'))` | |
# Get the old tags from the YAML files | |
export oldtag5_6_0=`yq -r .services.cat.image Docker-Swarm-deployment/single-node/catalogue/cat-stack.yaml | cut -d : -f 2` | |
git checkout master | |
# 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 each tag update | |
if [ "$newtag5_6_0" != "$oldtag5_6_0" ] | |
then | |
git checkout -b cat-automatic-updates/$newtag5_6_0 | |
# Uses sed to find and replace $oldtag5_6_0 with $newtag5_6_0 in Docker-Swarm-deployment/single-node/catalogue/cat-stack.yaml file | |
sed -i s/$oldtag5_6_0/$newtag5_6_0/g Docker-Swarm-deployment/single-node/catalogue/cat-stack.yaml | |
# Exports the current version of the application from K8s-deployment/Charts/catalogue/Chart.yaml file | |
export oldappversion=`yq -r .version K8s-deployment/Charts/catalogue/Chart.yaml` | |
# Uses awk to increment the version number in K8s-deployment/Charts/catalogue/Chart.yaml file | |
export newappversion=`yq -r .version K8s-deployment/Charts/catalogue/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}' ` | |
# Uses sed to find and replace $oldappversion with $newappversion in K8s-deployment/Charts/catalogue/Chart.yaml and K8s-deployment/Charts/catalogue/values.yaml files | |
sed -i s/$oldappversion/$newappversion/g K8s-deployment/Charts/catalogue/Chart.yaml | |
sed -i s/$oldtag5_6_0/$newtag5_6_0/g K8s-deployment/Charts/catalogue/values.yaml | |
git add Docker-Swarm-deployment/single-node/catalogue/cat-stack.yaml K8s-deployment/Charts/catalogue/values.yaml K8s-deployment/Charts/catalogue/Chart.yaml | |
git commit --allow-empty -m "updated CAT docker image tag to $newtag5_6_0" | |
git push --set-upstream origin cat-automatic-updates/$newtag5_6_0 | |
# Creates a new pull request on the datakaveri/iudx-deployment repository with the base branch master | |
gh pr create -R datakaveri/iudx-deployment --base master --fill | |
fi |