
* Remove unnecessary scripts * Sync identical scripts * Update chart_version.sh so to make it identical with OSH * Sync README.rst, tox.ini, .gitignore, Makefile * Rename some files to prevent merge conflicts * Sync releasenotes config Change-Id: Ibfdebcb62a416fc1b15989a1fd89b897a783d8f4
17 lines
384 B
Bash
Executable File
17 lines
384 B
Bash
Executable File
#!/bin/bash
|
|
set -x
|
|
|
|
if [ "x$1" == "x" ]; then
|
|
CHART_DIRS="$(echo ./*/)"
|
|
else
|
|
CHART_DIRS="$(echo ./$1/)"
|
|
fi
|
|
|
|
for CHART_DIR in ${CHART_DIRS} ; do
|
|
if [ -e ${CHART_DIR}values.yaml ]; then
|
|
for IMAGE in $(cat ${CHART_DIR}values.yaml | yq '.images.tags | map(.) | join(" ")' | tr -d '"'); do
|
|
sudo docker inspect $IMAGE >/dev/null|| sudo docker pull $IMAGE
|
|
done
|
|
fi
|
|
done
|