We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37d8f0e commit 2ee82a8Copy full SHA for 2ee82a8
1 file changed
contrib/coreos/user-data.example
@@ -142,8 +142,7 @@ write_files:
142
#!/bin/bash
143
144
COMPONENTS=(builder cache controller database logger logspout publisher registry router store-daemon store-gateway store-metadata store-monitor store-volume)
145
-
146
- for c in $COMPONENTS; do
+ for c in "${COMPONENTS[@]}"; do
147
image=`/run/deis/bin/get_image /deis/$c`
148
docker history $image >/dev/null 2>&1 || docker pull $image
149
done
0 commit comments