Skip to content

Commit

Permalink
Merge pull request #109 from sivanaikk/main-separate-tag
Browse files Browse the repository at this point in the history
separated main branch github workflow
  • Loading branch information
karun-singh authored Aug 5, 2024
2 parents c6ad1ef + 8a11685 commit b545ad0
Showing 1 changed file with 11 additions and 38 deletions.
49 changes: 11 additions & 38 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# This github workflow will automatically update docker image tags of auditing-server-depl in the datakaveri/iudx-deployment repository files, whenever docker image is pushed to ghcr.io/datakaveri/auditing-server-depl .Based on tag it will update the master/latest branch (if its 5.5.1-alpha-) or 5.5.0 stable branch (if its 5.5.0-)
name: Update Auditing server docker image tags
# This github workflow will automatically update docker image tags of auditing-server-depl in the datakaveri/iudx-deployment repository files, whenever docker image is pushed to ghcr.io/datakaveri/auditing-server-depl .Based on tag it will update the master/latest branch (if its 5.6.0-alpha-)

# This trigger will run the workflow whenever a new package is published to the registry
on:
Expand Down Expand Up @@ -28,52 +27,26 @@ jobs:
env:
GH_TOKEN: ${{ secrets.JENKINS_UPDATE}}
run: |
# Get the latest version of 5.5.0 and 5.5.1-alpha tags from the container registry using GitHub API
export newtag5_5_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/auditing-server-depl/versions | jq ' .[].metadata.container.tags[0]' | grep 5.5.0 | grep -v alpha | sed -e 's/^"//' -e 's/"$//'))`
export newtag5_5_1=`(head -n 1 <(curl -H "Accept: application/vnd.github+json" -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" https://api.github.com/orgs/datakaveri/packages/container/auditing-server-depl/versions | jq ' .[].metadata.container.tags[0]' | grep 5.5.1-alpha | sed -e 's/^"//' -e 's/"$//'))`
# 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/auditing-server-depl/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_5_1=`yq -r .services.auditing.image Docker-Swarm-deployment/single-node/auditing-server/auditing-stack.yaml | cut -d : -f 2`
git checkout 5.5.0
export oldtag5_5_0=$(yq -r .services.auditing.image Docker-Swarm-deployment/single-node/auditing-server/auditing-stack.yaml | cut -d : -f 2)
export oldtag5_6_0=`yq -r .services.auditing.image Docker-Swarm-deployment/single-node/auditing-server/auditing-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 each tag update
if [ "$newtag5_5_0" != "$oldtag5_5_0" ]
then
git checkout -b auditing-server-5.5.0-automatic-updates/$newtag5_5_0
# Uses sed to find and replace $oldtag5_5_0 with $newtag5_5_0 in Docker-Swarm-deployment/single-node/auditing-server/auditing-stack.yaml file
sed -i s/$oldtag5_5_0/$newtag5_5_0/g Docker-Swarm-deployment/single-node/auditing-server/auditing-stack.yaml
# Exports the current version of the application from K8s-deployment/Charts/auditing-server/Chart.yaml file
export oldappversion=`yq -r .version K8s-deployment/Charts/auditing-server/Chart.yaml`
# Uses awk to increment the version number in K8s-deployment/Charts/auditing-server/Chart.yaml file
export newappversion=`yq -r .version K8s-deployment/Charts/auditing-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}' `
# Uses sed to find and replace $oldappversion with $newappversion in K8s-deployment/Charts/auditing-server/Chart.yaml and K8s-deployment/Charts/auditing-server/values.yaml files
sed -i s/$oldappversion/$newappversion/g K8s-deployment/Charts/auditing-server/Chart.yaml
sed -i s/$oldtag5_5_0/$newtag5_5_0/g K8s-deployment/Charts/auditing-server/values.yaml
git add Docker-Swarm-deployment/single-node/auditing-server/auditing-stack.yaml K8s-deployment/Charts/auditing-server/values.yaml K8s-deployment/Charts/auditing-server/Chart.yaml
git commit --allow-empty -m "updated Auditing server docker image tag to $newtag5_5_0"
git push --set-upstream origin auditing-server-5.5.0-automatic-updates/$newtag5_5_0
# Creates a new pull request on the datakaveri/iudx-deployment repository with the base branch 5.5.0
gh pr create -R datakaveri/iudx-deployment --base 5.5.0 --fill
fi
if [ "$newtag5_5_1" != "$oldtag5_5_1" ]
if [ "$newtag5_6_0" != "$oldtag5_6_0" ]
then
git checkout master
git checkout -b auditing-server-automatic-updates/$newtag5_5_1
git checkout -b auditing-server-automatic-updates/$newtag5_6_0
# Uses sed to find and replace $oldtag5_5_1 with $newtag5_5_1 in Docker-Swarm-deployment/single-node/auditing-server/auditing-stack.yaml file
sed -i s/$oldtag5_5_1/$newtag5_5_1/g Docker-Swarm-deployment/single-node/auditing-server/auditing-stack.yaml
# Uses sed to find and replace $oldtag5_6_0 with $newtag5_6_0 in Docker-Swarm-deployment/single-node/auditing-server/auditing-stack.yaml file
sed -i s/$oldtag5_6_0/$newtag5_6_0/g Docker-Swarm-deployment/single-node/auditing-server/auditing-stack.yaml
# Exports the current version of the application from K8s-deployment/Charts/auditing-server/Chart.yaml file
export oldappversion=`yq -r .version K8s-deployment/Charts/auditing-server/Chart.yaml`
Expand All @@ -83,10 +56,10 @@ jobs:
# Uses sed to find and replace $oldappversion with $newappversion in K8s-deployment/Charts/auditing-server/Chart.yaml and K8s-deployment/Charts/auditing-server/values.yaml files
sed -i s/$oldappversion/$newappversion/g K8s-deployment/Charts/auditing-server/Chart.yaml
sed -i s/$oldtag5_5_1/$newtag5_5_1/g K8s-deployment/Charts/auditing-server/values.yaml
sed -i s/$oldtag5_6_0/$newtag5_6_0/g K8s-deployment/Charts/auditing-server/values.yaml
git add Docker-Swarm-deployment/single-node/auditing-server/auditing-stack.yaml K8s-deployment/Charts/auditing-server/values.yaml K8s-deployment/Charts/auditing-server/Chart.yaml
git commit --allow-empty -m "updated Auditing server docker image tag to $newtag5_5_1"
git push --set-upstream origin auditing-server-automatic-updates/$newtag5_5_1
git commit --allow-empty -m "updated Auditing server docker image tag to $newtag5_6_0"
git push --set-upstream origin auditing-server-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
Expand Down

0 comments on commit b545ad0

Please sign in to comment.