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.
1 parent e2e5192 commit 9dfcadfCopy full SHA for 9dfcadf
.github/utils/helm_image_check.sh
@@ -12,7 +12,7 @@ main() {
12
if [[ "$chart" == *"loadbalancer"* || "$chart" == *"kblib-"*".tgz"* ]]; then
13
continue
14
fi
15
- images=$( helm template $chart | egrep 'image:|repository:|tag:|docker.io/|apecloud-registry.cn-zhangjiakou.cr.aliyuncs.com/|infracreate-registry.cn-zhangjiakou.cr.aliyuncs.com/|ghcr.io/|quay.io/' | awk '{print $2}' | sed 's/"//g' )
+ images=$( helm template $chart | egrep 'image:|repository:|tag:|docker.io/|apecloud-registry.cn-zhangjiakou.cr.aliyuncs.com/|infracreate-registry.cn-zhangjiakou.cr.aliyuncs.com/|ghcr.io/|quay.io/' | grep -v '[A-Z]' | awk '{print $2}' | sed 's/"//g' )
16
repository=""
17
for image in $( echo "$images" ); do
18
skip_flag=0
0 commit comments