Skip to content

Commit

Permalink
Version debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
Hyperkid123 committed Aug 12, 2024
1 parent ba819e5 commit 3e11361
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions build/template_check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ CURRENT_DEPLOY=$(md5sum deploy.yml)

make build-template

echo "Checking if deployment template is up to date"
echo "Current deployment template: $CURRENT_DEPLOY"
echo "New deployment template: $(md5sum deploy.yml)"
echo md5sum --version
echo kustomize version

if [[ $CURRENT_DEPLOY != $(md5sum deploy.yml) ]]; then
echo "Deployment template not updated. Please run make build-template and recommit"
exit 1
Expand Down

0 comments on commit 3e11361

Please sign in to comment.