We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8586361 + ee86b00 commit 64b8cf0Copy full SHA for 64b8cf0
hack/verify-helm-chart.sh
@@ -79,11 +79,18 @@ validate_image "${expected_blob_image}" "${blob_image}"
79
80
echo "Images in deploy/ matches those in the latest helm chart."
81
82
-# verify whether latest chart config has changed
+# verify whether chart config has changed
83
+diff=`git diff`
84
+if [[ -n "${diff}" ]]; then
85
+ echo "${diff}"
86
+ exit 1
87
+fi
88
+
89
for dir in charts/*
90
do
91
if [ -d $dir ]; then
92
if [ -f $dir/*.tgz ]; then
93
+ echo "verify $dir ..."
94
tar -xvf $dir/*.tgz -C $dir/
95
fi
96
@@ -97,4 +104,4 @@ if [[ -n "${diff}" ]]; then
97
104
exit 1
98
105
99
106
100
-echo "latest chart tgz file verified."
107
+echo "chart tgz files verified."
0 commit comments