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 4934774 commit b8a52bbCopy full SHA for b8a52bb
scripts/get-all-images.sh
@@ -3,6 +3,6 @@ CHARTDIR="${MYDIR}/../charts/cf-runtime"
3
VALUESFILE="${MYDIR}/../charts/cf-runtime/.ci/values-ci.yaml"
4
OUTPUTFILE=$1
5
helm dependency update $CHARTDIR
6
-helm template --values $VALUESFILE --set global.runtimeName="dummy" $CHARTDIR | grep -E 'image: | dindImage:' | awk -F ': ' '{print $2}' | tr -d '"' | tr -d "'" | uniq > $OUTPUTFILE
+helm template --values $VALUESFILE --set global.runtimeName="dummy" $CHARTDIR | grep -E 'image: | dindImage:' | awk -F ': ' '{print $2}' | tr -d '"' | tr -d "'" | sort | uniq > $OUTPUTFILE
7
8
cat $OUTPUTFILE | tr '@' '\n' | awk 'NR % 2 == 1' | tee $OUTPUTFILE
0 commit comments