osmith has uploaded this change for review.

View Change

jobs/registry…: fix syntax error

Use $REGISTRY instead of ${REGISTRY}, so jenkins-job-builder 6.3.0
doesn't interpret it as JJB variable. It needs to be interpreted as
shell variable here. This probably worked with older JJB versions.

/home/user/code/osmo-dev/src/osmo-ci/jobs/registry-update-base-images.yml:27:11: While formatting string 'REGISTRY="registry.osmocom.org"\nIMAGES="\n debian/eol:buster\n debian:bullseye\n ...': Missing parameter: 'REGISTRY'
REGISTRY="registry.osmocom.org"
^

Change-Id: I54b11d0dd7847bd208c4e4270be3151479dac983
---
M jobs/registry-update-base-images.yml
1 file changed, 1 insertion(+), 1 deletion(-)

git pull ssh://gerrit.osmocom.org:29418/osmo-ci refs/changes/59/40659/1
diff --git a/jobs/registry-update-base-images.yml b/jobs/registry-update-base-images.yml
index 1b5ad97..c9934cb 100644
--- a/jobs/registry-update-base-images.yml
+++ b/jobs/registry-update-base-images.yml
@@ -35,7 +35,7 @@
"
for i in $IMAGES; do
src=$i
- dst=${REGISTRY}/$i
+ dst=$REGISTRY/$i
echo
echo ======= $src
docker pull $src

To view, visit change 40659. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-MessageType: newchange
Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: I54b11d0dd7847bd208c4e4270be3151479dac983
Gerrit-Change-Number: 40659
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <osmith@sysmocom.de>