Running with gitlab-runner 13.8.0 (775dd39d)  on global-shared-gitlab-runner-5dc56b4ff7-zm7kn XosKzEsy section_start:1613574142:resolve_secrets Resolving secrets section_end:1613574142:resolve_secrets section_start:1613574142:prepare_executor Preparing the "kubernetes" executor Using Kubernetes namespace: gitlab-runner-isolated WARNING: Pulling GitLab Runner helper image from Docker Hub. Helper image is migrating to registry.gitlab.com, for more information see https://docs.gitlab.com/runner/configuration/advanced-configuration.html#migrating-helper-image-to-registrygitlabcom Using Kubernetes executor with image ${GITLAB_INTERNAL_REGISTRY}/ironbank-tools/ironbank-pipeline/ib-pipeline-image:0.1 ... section_end:1613574142:prepare_executor section_start:1613574142:prepare_script Preparing environment Waiting for pod gitlab-runner-isolated/runner-xoskzesy-project-1349-concurrent-05wdcn to be running, status is Pending Running on runner-xoskzesy-project-1349-concurrent-05wdcn via global-shared-gitlab-runner-5dc56b4ff7-zm7kn... section_end:1613574145:prepare_script section_start:1613574145:get_sources Getting source from Git repository Fetching changes with git depth set to 50... Initialized empty Git repository in /builds/dsop/pivotal/rabbitmq/rabbitmq38/.git/ Created fresh repository. Checking out 40e9ae33 as development... Skipping Git submodules setup section_end:1613574146:get_sources section_start:1613574146:download_artifacts Downloading artifacts Downloading artifacts for hardening_manifest (2008512)... Downloading artifacts from coordinator... ok  id=2008512 responseStatus=200 OK token=9Ux1hRsB Downloading artifacts for import artifacts (2008514)... Downloading artifacts from coordinator... ok  id=2008514 responseStatus=200 OK token=myGXpxrj Downloading artifacts for load scripts (2008509)... Downloading artifacts from coordinator... ok  id=2008509 responseStatus=200 OK token=e5sxSjMy Downloading artifacts for wl compare lint (2008513)... Downloading artifacts from coordinator... ok  id=2008513 responseStatus=200 OK token=wXQ1Xz7Y section_end:1613574147:download_artifacts section_start:1613574147:step_script Executing "step_script" stage of the job script $ "${PIPELINE_REPO_DIR}/stages/build/build-run.sh" Determine source registry based on branch Load any images used in Dockerfile build Load HTTP and S3 external resources 'ci-artifacts/import-artifacts/external-resources/erlang.rpm' -> './erlang.rpm' 'ci-artifacts/import-artifacts/external-resources/rabbitmq.tar.xz' -> './rabbitmq.tar.xz' Converting labels from hardening manifest into command line args Converting build args from hardening manifest into command line args Build the image STEP 1: FROM registry1.dsop.io/ironbank/redhat/ubi/ubi8:8.3 AS build Getting image source signatures Copying blob sha256:0dbe531b0d7b1c6b3a4e24bad4cecdf2edc9ba16351a58879559723e453e63d9 Copying blob sha256:acf5b70b937b5c8d6d006d4a15e0e6e9b8f0c3568214ab13d010a84e7c286ec5 Copying blob sha256:454e79d38c1a85717a6c4a45a139772b30adb0ac7eac6185817b1526c37334f1 Copying config sha256:e114c814f49ebe455785cc3e39d97e3e80272114e3d3ab0c870db6d874e19d12 Writing manifest to image destination Storing signatures STEP 2: COPY rabbitmq.tar.xz / STEP 3: RUN dnf install -y xz && mkdir -p /opt/rabbitmq && tar -xf /rabbitmq.tar.xz -C /opt/rabbitmq --strip-components=1 Red Hat Universal Base Image 8 (RPMs) - BaseOS 77 kB/s | 774 kB 00:10 Red Hat Universal Base Image 8 (RPMs) - AppStre 506 kB/s | 5.0 MB 00:10 Red Hat Universal Base Image 8 (RPMs) - CodeRea 1.3 kB/s | 13 kB 00:10 Dependencies resolved. ================================================================================ Package Architecture Version Repository Size ================================================================================ Installing: xz x86_64 5.2.4-3.el8 ubi-8-baseos 153 k Transaction Summary ================================================================================ Install 1 Package Total download size: 153 k Installed size: 423 k Downloading Packages: [MIRROR] xz-5.2.4-3.el8.x86_64.rpm: Curl error (28): Timeout was reached for https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi8/8/x86_64/baseos/os/Packages/x/xz-5.2.4-3.el8.x86_64.rpm [Connection timed out after 5000 milliseconds] xz-5.2.4-3.el8.x86_64.rpm 31 kB/s | 153 kB 00:05 -------------------------------------------------------------------------------- Total 31 kB/s | 153 kB 00:05 Running transaction check Transaction check succeeded. Running transaction test Transaction test succeeded. Running transaction Preparing : 1/1 Installing : xz-5.2.4-3.el8.x86_64 1/1 Running scriptlet: xz-5.2.4-3.el8.x86_64 1/1 Verifying : xz-5.2.4-3.el8.x86_64 1/1 Installed products updated. Installed: xz-5.2.4-3.el8.x86_64 Complete! STEP 4: FROM registry1.dsop.io/ironbank/redhat/ubi/ubi8:8.3 STEP 5: ENV LANG=C.UTF-8 LANGUAGE=C.UTF-8 LC_ALL=C.UTF-8 RABBITMQ_CONFIG_FILE=/etc/rabbitmq/rabbitmq RABBITMQ_DATA_DIR=/var/lib/rabbitmq RABBITMQ_HOME=/opt/rabbitmq RABBITMQ_LOGS=- STEP 6: ENV HOME=${RABBITMQ_DATA_DIR} PATH=${RABBITMQ_HOME}/sbin:${PATH} STEP 7: COPY --from=build /opt/rabbitmq /opt/rabbitmq STEP 8: COPY erlang.rpm gpg/rabbitmq-release-signing-key.asc / STEP 9: COPY scripts/docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh STEP 10: RUN groupadd -g 1000 rabbitmq && useradd -r -u 1000 -m -d ${HOME} -s /sbin/nologin -g rabbitmq rabbitmq && mkdir -p /etc/rabbitmq /var/log/rabbitmq /tmp/rabbitmq-ssl && chown rabbitmq:0 -R ${HOME} ${RABBITMQ_HOME} /etc/rabbitmq /var/log/rabbitmq /tmp/rabbitmq-ssl && chmod g=u -R ${HOME} ${RABBITMQ_HOME} /etc/rabbitmq /var/log/rabbitmq /tmp/rabbitmq-ssl && ln -s ${RABBITMQ_DATA_DIR} ${RABBITMQ_HOME}/var && ln -s ${RABBITMQ_HOME}/plugins /plugins && rpm --import /rabbitmq-release-signing-key.asc && dnf upgrade -y && dnf install -y hostname /erlang.rpm && rm -f /erlang.rpm /rabbitmq-release-signing-key.asc && dnf clean all && rm -rf /var/cache/dnf Red Hat Universal Base Image 8 (RPMs) - BaseOS 77 kB/s | 774 kB 00:10 Red Hat Universal Base Image 8 (RPMs) - AppStre 506 kB/s | 5.0 MB 00:10 Red Hat Universal Base Image 8 (RPMs) - CodeRea 1.3 kB/s | 13 kB 00:10 Dependencies resolved. ========================================================================================== Package Arch Version Repository Size ========================================================================================== Upgrading: dbus x86_64 1:1.12.8-12.el8_3 ubi-8-baseos 41 k dbus-common noarch 1:1.12.8-12.el8_3 ubi-8-baseos 45 k dbus-daemon x86_64 1:1.12.8-12.el8_3 ubi-8-baseos 240 k dbus-libs x86_64 1:1.12.8-12.el8_3 ubi-8-baseos 183 k dbus-tools x86_64 1:1.12.8-12.el8_3 ubi-8-baseos 85 k device-mapper x86_64 8:1.02.171-5.el8_3.2 ubi-8-baseos 373 k device-mapper-libs x86_64 8:1.02.171-5.el8_3.2 ubi-8-baseos 406 k dnf-plugin-subscription-manager x86_64 1.27.18-1.el8_3 ubi-8-baseos 288 k glibc x86_64 2.28-127.el8_3.2 ubi-8-baseos 3.6 M glibc-common x86_64 2.28-127.el8_3.2 ubi-8-baseos 1.3 M glibc-minimal-langpack x86_64 2.28-127.el8_3.2 ubi-8-baseos 54 k kmod-libs x86_64 25-16.el8_3.1 ubi-8-baseos 68 k python3-subscription-manager-rhsm x86_64 1.27.18-1.el8_3 ubi-8-baseos 362 k python3-syspurpose x86_64 1.27.18-1.el8_3 ubi-8-baseos 299 k subscription-manager x86_64 1.27.18-1.el8_3 ubi-8-baseos 1.1 M subscription-manager-rhsm-certificates x86_64 1.27.18-1.el8_3 ubi-8-baseos 262 k Installing dependencies: python3-chardet noarch 3.0.4-7.el8 ubi-8-baseos 195 k python3-idna noarch 2.5-5.el8 ubi-8-baseos 97 k python3-pysocks noarch 1.6.8-3.el8 ubi-8-baseos 34 k python3-requests noarch 2.20.0-2.1.el8_1 ubi-8-baseos 123 k python3-urllib3 noarch 1.24.2-4.el8 ubi-8-baseos 176 k Installing weak dependencies: glibc-langpack-en x86_64 2.28-127.el8_3.2 ubi-8-baseos 824 k Transaction Summary ========================================================================================== Install 6 Packages Upgrade 16 Packages Total download size: 10 M Downloading Packages: [MIRROR] python3-requests-2.20.0-2.1.el8_1.noarch.rpm: Curl error (28): Timeout was reached for https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi8/8/x86_64/baseos/os/Packages/p/python3-requests-2.20.0-2.1.el8_1.noarch.rpm [Connection timed out after 5000 milliseconds] [MIRROR] python3-chardet-3.0.4-7.el8.noarch.rpm: Curl error (28): Timeout was reached for https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi8/8/x86_64/baseos/os/Packages/p/python3-chardet-3.0.4-7.el8.noarch.rpm [Connection timed out after 5000 milliseconds] [MIRROR] python3-urllib3-1.24.2-4.el8.noarch.rpm: Curl error (28): Timeout was reached for https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi8/8/x86_64/baseos/os/Packages/p/python3-urllib3-1.24.2-4.el8.noarch.rpm [Connection timed out after 5000 milliseconds] (1/22): python3-requests-2.20.0-2.1.el8_1.noarc 25 kB/s | 123 kB 00:05 (2/22): python3-urllib3-1.24.2-4.el8.noarch.rpm 35 kB/s | 176 kB 00:05 (3/22): python3-chardet-3.0.4-7.el8.noarch.rpm 39 kB/s | 195 kB 00:05 (4/22): python3-pysocks-1.6.8-3.el8.noarch.rpm 16 MB/s | 34 kB 00:00 (5/22): python3-idna-2.5-5.el8.noarch.rpm 38 MB/s | 97 kB 00:00 (6/22): dbus-daemon-1.12.8-12.el8_3.x86_64.rpm 53 MB/s | 240 kB 00:00 (7/22): glibc-minimal-langpack-2.28-127.el8_3.2 15 MB/s | 54 kB 00:00 (8/22): glibc-langpack-en-2.28-127.el8_3.2.x86_ 65 MB/s | 824 kB 00:00 (9/22): dnf-plugin-subscription-manager-1.27.18 37 MB/s | 288 kB 00:00 (10/22): python3-subscription-manager-rhsm-1.27 39 MB/s | 362 kB 00:00 (11/22): dbus-common-1.12.8-12.el8_3.noarch.rpm 19 MB/s | 45 kB 00:00 (12/22): device-mapper-1.02.171-5.el8_3.2.x86_6 44 MB/s | 373 kB 00:00 (13/22): dbus-1.12.8-12.el8_3.x86_64.rpm 14 MB/s | 41 kB 00:00 (14/22): subscription-manager-rhsm-certificates 44 MB/s | 262 kB 00:00 (15/22): dbus-tools-1.12.8-12.el8_3.x86_64.rpm 26 MB/s | 85 kB 00:00 (16/22): dbus-libs-1.12.8-12.el8_3.x86_64.rpm 55 MB/s | 183 kB 00:00 (17/22): device-mapper-libs-1.02.171-5.el8_3.2. 49 MB/s | 406 kB 00:00 (18/22): python3-syspurpose-1.27.18-1.el8_3.x86 42 MB/s | 299 kB 00:00 (19/22): subscription-manager-1.27.18-1.el8_3.x 69 MB/s | 1.1 MB 00:00 (20/22): kmod-libs-25-16.el8_3.1.x86_64.rpm 24 MB/s | 68 kB 00:00 (21/22): glibc-common-2.28-127.el8_3.2.x86_64.r 62 MB/s | 1.3 MB 00:00 (22/22): glibc-2.28-127.el8_3.2.x86_64.rpm 85 MB/s | 3.6 MB 00:00 -------------------------------------------------------------------------------- Total 2.0 MB/s | 10 MB 00:05 Running transaction check Transaction check succeeded. Running transaction test Transaction test succeeded. Running transaction Preparing : 1/1 Running scriptlet: glibc-common-2.28-127.el8_3.2.x86_64 1/1 Upgrading : glibc-common-2.28-127.el8_3.2.x86_64 1/38 Running scriptlet: glibc-2.28-127.el8_3.2.x86_64 2/38 Upgrading : glibc-2.28-127.el8_3.2.x86_64 2/38 Running scriptlet: glibc-2.28-127.el8_3.2.x86_64 2/38 Installing : glibc-langpack-en-2.28-127.el8_3.2.x86_64 3/38 Upgrading : dbus-libs-1:1.12.8-12.el8_3.x86_64 4/38 Running scriptlet: dbus-libs-1:1.12.8-12.el8_3.x86_64 4/38 Upgrading : dbus-tools-1:1.12.8-12.el8_3.x86_64 5/38 Upgrading : dnf-plugin-subscription-manager-1.27.18-1.el8_3.x8 6/38 Upgrading : device-mapper-8:1.02.171-5.el8_3.2.x86_64 7/38 Upgrading : device-mapper-libs-8:1.02.171-5.el8_3.2.x86_64 8/38 Upgrading : python3-syspurpose-1.27.18-1.el8_3.x86_64 9/38 Upgrading : subscription-manager-rhsm-certificates-1.27.18-1.e 10/38 Upgrading : python3-subscription-manager-rhsm-1.27.18-1.el8_3. 11/38 Upgrading : dbus-common-1:1.12.8-12.el8_3.noarch 12/38 Running scriptlet: dbus-daemon-1:1.12.8-12.el8_3.x86_64 13/38 Upgrading : dbus-daemon-1:1.12.8-12.el8_3.x86_64 13/38 Running scriptlet: dbus-daemon-1:1.12.8-12.el8_3.x86_64 13/38 Installing : python3-idna-2.5-5.el8.noarch 14/38 Installing : python3-pysocks-1.6.8-3.el8.noarch 15/38 Installing : python3-urllib3-1.24.2-4.el8.noarch 16/38 Installing : python3-chardet-3.0.4-7.el8.noarch 17/38 Installing : python3-requests-2.20.0-2.1.el8_1.noarch 18/38 Upgrading : subscription-manager-1.27.18-1.el8_3.x86_64 19/38 Running scriptlet: subscription-manager-1.27.18-1.el8_3.x86_64 19/38 Upgrading : dbus-1:1.12.8-12.el8_3.x86_64 20/38 Upgrading : glibc-minimal-langpack-2.28-127.el8_3.2.x86_64 21/38 Upgrading : kmod-libs-25-16.el8_3.1.x86_64 22/38 Running scriptlet: kmod-libs-25-16.el8_3.1.x86_64 22/38 Cleanup : device-mapper-8:1.02.171-5.el8.x86_64 23/38 Cleanup : dbus-1:1.12.8-11.el8.x86_64 24/38 Running scriptlet: dbus-daemon-1:1.12.8-11.el8.x86_64 25/38 Cleanup : dbus-daemon-1:1.12.8-11.el8.x86_64 25/38 Running scriptlet: dbus-daemon-1:1.12.8-11.el8.x86_64 25/38 Cleanup : device-mapper-libs-8:1.02.171-5.el8.x86_64 26/38 Cleanup : dbus-tools-1:1.12.8-11.el8.x86_64 27/38 Cleanup : dbus-libs-1:1.12.8-11.el8.x86_64 28/38 Running scriptlet: dbus-libs-1:1.12.8-11.el8.x86_64 28/38 Cleanup : kmod-libs-25-16.el8.x86_64 29/38 Running scriptlet: kmod-libs-25-16.el8.x86_64 29/38 Running scriptlet: subscription-manager-1.27.16-1.el8.x86_64 30/38 Cleanup : subscription-manager-1.27.16-1.el8.x86_64 30/38 Running scriptlet: subscription-manager-1.27.16-1.el8.x86_64 30/38 Cleanup : python3-syspurpose-1.27.16-1.el8.x86_64 31/38 Cleanup : dbus-common-1:1.12.8-11.el8.noarch 32/38 Cleanup : python3-subscription-manager-rhsm-1.27.16-1.el8.x8 33/38 Cleanup : dnf-plugin-subscription-manager-1.27.16-1.el8.x86_ 34/38 Cleanup : subscription-manager-rhsm-certificates-1.27.16-1.e 35/38 Cleanup : glibc-minimal-langpack-2.28-127.el8.x86_64 36/38 Cleanup : glibc-2.28-127.el8.x86_64 37/38 Cleanup : glibc-common-2.28-127.el8.x86_64 38/38 Running scriptlet: glibc-common-2.28-127.el8.x86_64 38/38 Running scriptlet: glibc-common-2.28-127.el8_3.2.x86_64 38/38 Verifying : python3-requests-2.20.0-2.1.el8_1.noarch 1/38 Verifying : python3-chardet-3.0.4-7.el8.noarch 2/38 Verifying : python3-urllib3-1.24.2-4.el8.noarch 3/38 Verifying : glibc-langpack-en-2.28-127.el8_3.2.x86_64 4/38 Verifying : python3-pysocks-1.6.8-3.el8.noarch 5/38 Verifying : python3-idna-2.5-5.el8.noarch 6/38 Verifying : dbus-daemon-1:1.12.8-12.el8_3.x86_64 7/38 Verifying : dbus-daemon-1:1.12.8-11.el8.x86_64 8/38 Verifying : glibc-minimal-langpack-2.28-127.el8_3.2.x86_64 9/38 Verifying : glibc-minimal-langpack-2.28-127.el8.x86_64 10/38 Verifying : dnf-plugin-subscription-manager-1.27.18-1.el8_3.x8 11/38 Verifying : dnf-plugin-subscription-manager-1.27.16-1.el8.x86_ 12/38 Verifying : python3-subscription-manager-rhsm-1.27.18-1.el8_3. 13/38 Verifying : python3-subscription-manager-rhsm-1.27.16-1.el8.x8 14/38 Verifying : device-mapper-8:1.02.171-5.el8_3.2.x86_64 15/38 Verifying : device-mapper-8:1.02.171-5.el8.x86_64 16/38 Verifying : dbus-common-1:1.12.8-12.el8_3.noarch 17/38 Verifying : dbus-common-1:1.12.8-11.el8.noarch 18/38 Verifying : subscription-manager-rhsm-certificates-1.27.18-1.e 19/38 Verifying : subscription-manager-rhsm-certificates-1.27.16-1.e 20/38 Verifying : dbus-1:1.12.8-12.el8_3.x86_64 21/38 Verifying : dbus-1:1.12.8-11.el8.x86_64 22/38 Verifying : device-mapper-libs-8:1.02.171-5.el8_3.2.x86_64 23/38 Verifying : device-mapper-libs-8:1.02.171-5.el8.x86_64 24/38 Verifying : dbus-tools-1:1.12.8-12.el8_3.x86_64 25/38 Verifying : dbus-tools-1:1.12.8-11.el8.x86_64 26/38 Verifying : dbus-libs-1:1.12.8-12.el8_3.x86_64 27/38 Verifying : dbus-libs-1:1.12.8-11.el8.x86_64 28/38 Verifying : python3-syspurpose-1.27.18-1.el8_3.x86_64 29/38 Verifying : python3-syspurpose-1.27.16-1.el8.x86_64 30/38 Verifying : subscription-manager-1.27.18-1.el8_3.x86_64 31/38 Verifying : subscription-manager-1.27.16-1.el8.x86_64 32/38 Verifying : glibc-2.28-127.el8_3.2.x86_64 33/38 Verifying : glibc-2.28-127.el8.x86_64 34/38 Verifying : glibc-common-2.28-127.el8_3.2.x86_64 35/38 Verifying : glibc-common-2.28-127.el8.x86_64 36/38 Verifying : kmod-libs-25-16.el8_3.1.x86_64 37/38 Verifying : kmod-libs-25-16.el8.x86_64 38/38 Installed products updated. Upgraded: dbus-1:1.12.8-12.el8_3.x86_64 dbus-common-1:1.12.8-12.el8_3.noarch dbus-daemon-1:1.12.8-12.el8_3.x86_64 dbus-libs-1:1.12.8-12.el8_3.x86_64 dbus-tools-1:1.12.8-12.el8_3.x86_64 device-mapper-8:1.02.171-5.el8_3.2.x86_64 device-mapper-libs-8:1.02.171-5.el8_3.2.x86_64 dnf-plugin-subscription-manager-1.27.18-1.el8_3.x86_64 glibc-2.28-127.el8_3.2.x86_64 glibc-common-2.28-127.el8_3.2.x86_64 glibc-minimal-langpack-2.28-127.el8_3.2.x86_64 kmod-libs-25-16.el8_3.1.x86_64 python3-subscription-manager-rhsm-1.27.18-1.el8_3.x86_64 python3-syspurpose-1.27.18-1.el8_3.x86_64 subscription-manager-1.27.18-1.el8_3.x86_64 subscription-manager-rhsm-certificates-1.27.18-1.el8_3.x86_64 Installed: glibc-langpack-en-2.28-127.el8_3.2.x86_64 python3-chardet-3.0.4-7.el8.noarch python3-idna-2.5-5.el8.noarch python3-pysocks-1.6.8-3.el8.noarch python3-requests-2.20.0-2.1.el8_1.noarch python3-urllib3-1.24.2-4.el8.noarch Complete! Last metadata expiration check: 0:00:09 ago on Wed Feb 17 15:03:57 2021. Dependencies resolved. ================================================================================ Package Architecture Version Repository Size ================================================================================ Installing: erlang x86_64 23.2.4-1.el8 @commandline 26 M hostname x86_64 3.20-6.el8 ubi-8-baseos 32 k Transaction Summary ================================================================================ Install 2 Packages Total size: 26 M Total download size: 32 k Installed size: 63 M Downloading Packages: [MIRROR] hostname-3.20-6.el8.x86_64.rpm: Curl error (28): Timeout was reached for https://cdn-ubi.redhat.com/content/public/ubi/dist/ubi8/8/x86_64/baseos/os/Packages/h/hostname-3.20-6.el8.x86_64.rpm [Connection timed out after 5000 milliseconds] hostname-3.20-6.el8.x86_64.rpm 6.4 kB/s | 32 kB 00:05 -------------------------------------------------------------------------------- Total 6.4 kB/s | 32 kB 00:05 Running transaction check Transaction check succeeded. Running transaction test Transaction test succeeded. Running transaction Preparing : 1/1 Installing : erlang-23.2.4-1.el8.x86_64 1/2 Installing : hostname-3.20-6.el8.x86_64 2/2 Running scriptlet: hostname-3.20-6.el8.x86_64 2/2 Verifying : hostname-3.20-6.el8.x86_64 1/2 Verifying : erlang-23.2.4-1.el8.x86_64 2/2 Installed products updated. Installed: erlang-23.2.4-1.el8.x86_64 hostname-3.20-6.el8.x86_64 Complete! 25 files removed STEP 11: WORKDIR ${RABBITMQ_HOME} STEP 12: USER rabbitmq STEP 13: EXPOSE 4369 5671 5672 25672 STEP 14: HEALTHCHECK --start-period=10s CMD rabbitmq-diagnostics -q ping STEP 15: ENTRYPOINT ["docker-entrypoint.sh"] STEP 16: CMD ["rabbitmq-server"] STEP 17: COMMIT registry1.dsop.io/ironbank-staging/pivotal/rabbitmq/rabbitmq38 Getting image source signatures Copying blob sha256:92538e92de2938d7c4e279f871107b835bf0c8cc76a5a1655d66855706da18b0 Copying blob sha256:eb7bf34352ca9ba2fb0218870ac3c47b76d0b1fb7d50543d3ecfa497eca242b0 Copying blob sha256:216667773505b337a347a008ed711a5d576c64cd78c80b9a0b8e1b79f8e0b08d Copying blob sha256:c0946522b30e90391895b715ddac27c498688f7fc08339ad4df696bc071bcd3b Copying config sha256:0f54b6fbcf98cda13ea435351a8bf8209423f6f4191c7eeb349e8b98306c55b3 Writing manifest to image destination Storing signatures 0f54b6fbcf98cda13ea435351a8bf8209423f6f4191c7eeb349e8b98306c55b3 0f54b6fbcf98cda13ea435351a8bf8209423f6f4191c7eeb349e8b98306c55b3 + buildah tag --storage-driver=vfs registry1.dsop.io/ironbank-staging/pivotal/rabbitmq/rabbitmq38 registry1.dsop.io/ironbank-staging/pivotal/rabbitmq/rabbitmq38:166071 + buildah push --storage-driver=vfs --authfile staging_auth.json --digestfile=ci-artifacts/build/digest registry1.dsop.io/ironbank-staging/pivotal/rabbitmq/rabbitmq38:166071 Getting image source signatures Copying blob sha256:c0946522b30e90391895b715ddac27c498688f7fc08339ad4df696bc071bcd3b Copying blob sha256:eb7bf34352ca9ba2fb0218870ac3c47b76d0b1fb7d50543d3ecfa497eca242b0 Copying blob sha256:216667773505b337a347a008ed711a5d576c64cd78c80b9a0b8e1b79f8e0b08d Copying blob sha256:92538e92de2938d7c4e279f871107b835bf0c8cc76a5a1655d66855706da18b0 Copying config sha256:0f54b6fbcf98cda13ea435351a8bf8209423f6f4191c7eeb349e8b98306c55b3 Writing manifest to image destination Storing signatures + echo 'Read the tags' + tags_file=ci-artifacts/preflight/tags.txt + test -f ci-artifacts/preflight/tags.txt + IFS= + read -r tag Read the tags + buildah tag --storage-driver=vfs registry1.dsop.io/ironbank-staging/pivotal/rabbitmq/rabbitmq38 registry1.dsop.io/ironbank-staging/pivotal/rabbitmq/rabbitmq38:v3.8.12 + buildah push --storage-driver=vfs --authfile staging_auth.json registry1.dsop.io/ironbank-staging/pivotal/rabbitmq/rabbitmq38:v3.8.12 Getting image source signatures Copying blob sha256:eb7bf34352ca9ba2fb0218870ac3c47b76d0b1fb7d50543d3ecfa497eca242b0 Copying blob sha256:92538e92de2938d7c4e279f871107b835bf0c8cc76a5a1655d66855706da18b0 Copying blob sha256:216667773505b337a347a008ed711a5d576c64cd78c80b9a0b8e1b79f8e0b08d Copying blob sha256:c0946522b30e90391895b715ddac27c498688f7fc08339ad4df696bc071bcd3b Copying config sha256:0f54b6fbcf98cda13ea435351a8bf8209423f6f4191c7eeb349e8b98306c55b3 Writing manifest to image destination Storing signatures + IFS= + read -r tag + buildah tag --storage-driver=vfs registry1.dsop.io/ironbank-staging/pivotal/rabbitmq/rabbitmq38 registry1.dsop.io/ironbank-staging/pivotal/rabbitmq/rabbitmq38:latest + buildah push --storage-driver=vfs --authfile staging_auth.json registry1.dsop.io/ironbank-staging/pivotal/rabbitmq/rabbitmq38:latest Getting image source signatures Copying blob sha256:216667773505b337a347a008ed711a5d576c64cd78c80b9a0b8e1b79f8e0b08d Copying blob sha256:c0946522b30e90391895b715ddac27c498688f7fc08339ad4df696bc071bcd3b Copying blob sha256:92538e92de2938d7c4e279f871107b835bf0c8cc76a5a1655d66855706da18b0 Copying blob sha256:eb7bf34352ca9ba2fb0218870ac3c47b76d0b1fb7d50543d3ecfa497eca242b0 Copying config sha256:0f54b6fbcf98cda13ea435351a8bf8209423f6f4191c7eeb349e8b98306c55b3 Writing manifest to image destination Storing signatures + IFS= + read -r tag + skopeo copy --src-authfile staging_auth.json docker://registry1.dsop.io/ironbank-staging/pivotal/rabbitmq/rabbitmq38:166071 docker-archive:ci-artifacts/build/rabbitmq38-166071.tar Getting image source signatures Copying blob sha256:acf5b70b937b5c8d6d006d4a15e0e6e9b8f0c3568214ab13d010a84e7c286ec5 Copying blob sha256:0dbe531b0d7b1c6b3a4e24bad4cecdf2edc9ba16351a58879559723e453e63d9 Copying blob sha256:454e79d38c1a85717a6c4a45a139772b30adb0ac7eac6185817b1526c37334f1 Copying blob sha256:7f6af443d20c87bd16530584079e60045c6626479954ac5a10e4d87cec54d9f6 Copying config sha256:0f54b6fbcf98cda13ea435351a8bf8209423f6f4191c7eeb349e8b98306c55b3 Writing manifest to image destination Storing signatures ++ podman inspect --storage-driver=vfs registry1.dsop.io/ironbank-staging/pivotal/rabbitmq/rabbitmq38 --format '{{.Id}}' time="2021-02-17T15:04:51Z" level=error msg="unable to write system event: \"write unixgram @dc37d->/run/systemd/journal/socket: sendmsg: no such file or directory\"" + IMAGE_ID=sha256:0f54b6fbcf98cda13ea435351a8bf8209423f6f4191c7eeb349e8b98306c55b3 + echo IMAGE_ID=sha256:0f54b6fbcf98cda13ea435351a8bf8209423f6f4191c7eeb349e8b98306c55b3 ++ sha256sum ci-artifacts/build/rabbitmq38-166071.tar ++ grep -E '^[a-zA-Z0-9]+' -o + IMAGE_TAR_SHA=c2cf65f0a8647c9565096b842914c0cc6f3aee96490cc272a2b66a54e06a6c47 + echo IMAGE_TAR_SHA=c2cf65f0a8647c9565096b842914c0cc6f3aee96490cc272a2b66a54e06a6c47 + IMAGE_PODMAN_SHA=sha256:155dece6ba58fb4676d75dca5cd0f2f7b84fd7069b1561474f4fa3649b60201b + echo IMAGE_PODMAN_SHA=sha256:155dece6ba58fb4676d75dca5cd0f2f7b84fd7069b1561474f4fa3649b60201b + echo IMAGE_FILE=rabbitmq38-166071 + echo IMAGE_FULLTAG=registry1.dsop.io/ironbank-staging/pivotal/rabbitmq/rabbitmq38:166071 + echo IM_NAME=pivotal/rabbitmq/rabbitmq38 section_end:1613574293:step_script section_start:1613574293:upload_artifacts_on_success Uploading artifacts for successful job Uploading artifacts... ci-artifacts/build/: found 3 matching files and directories Uploading artifacts as "archive" to coordinator... ok id=2008516 responseStatus=201 Created token=g3uHxvaH Uploading artifacts... build.env: found 1 matching files and directories  Uploading artifacts as "dotenv" to coordinator... ok id=2008516 responseStatus=201 Created token=g3uHxvaH section_end:1613574310:upload_artifacts_on_success section_start:1613574310:cleanup_file_variables Cleaning up file based variables section_end:1613574310:cleanup_file_variables Job succeeded