2025-08-13 14:06:30,501: INFO: Building opensdn-external-rsyslogd 2025-08-13 14:06:30,632: INFO: Building args: --network host --build-arg PIP_REPOSITORY=http://localhost:6667/pip/simple --build-arg CONTRAIL_REGISTRY=nexus.gz1.opensdn.io:5101 --build-arg CONTRAIL_CONTAINER_TAG=master-2_0_0_5-1 --build-arg SITE_MIRROR=http://nexus.gz1.opensdn.io/repository/external-web-cache --build-arg LINUX_DISTR_VER=7 --build-arg LINUX_DISTR=centos --build-arg GENERAL_EXTRA_RPMS="" --build-arg BASE_EXTRA_RPMS="" --build-arg YUM_ENABLE_REPOS="" --build-arg CONTAINER_NAME=opensdn-external-rsyslogd --build-arg UBUNTU_DISTR_VERSION=24.04 --build-arg UBUNTU_DISTR=ubuntu --build-arg VENDOR_NAME=OpenSDN-IO --build-arg VENDOR_DOMAIN=io.opensdn Sending build context to Docker daemon 40.96 kB Step 1/13 : ARG CONTAINER_NAME Step 2/13 : ARG CONTRAIL_REGISTRY Step 3/13 : ARG CONTRAIL_CONTAINER_TAG Step 4/13 : FROM ${CONTRAIL_REGISTRY}/opensdn-general-base:${CONTRAIL_CONTAINER_TAG} ---> e634ab26b1df Step 5/13 : ENV SERVICE_NAME=rsyslogd CONTAINER_NAME=$CONTAINER_NAME ---> Running in 723d2d544155 ---> Removed intermediate container 723d2d544155 ---> d454512520e3 Step 6/13 : LABEL name=$CONTAINER_NAME summary="Contrail rsyslogd" description="Contrail rsyslogd support" $VENDOR_DOMAIN".service"=$SERVICE_NAME $VENDOR_DOMAIN".container.name"=$CONTAINER_NAME ---> Running in a5459d456b70 ---> Removed intermediate container a5459d456b70 ---> 2a2c6ebf9c80 Step 7/13 : COPY *.sh / ---> 6f7bc8ab39a5 Step 8/13 : RUN set -e ; /bin/bash -c 'for item in `ls /__*` ; do mv $item /${item:3} ; done' && source /etc/os-release && if [[ "$ID" == 'rhel' && "${PLATFORM_ID//*:/}" == 'el8' ]] ; then RSYSLOG_VERSION=8.37.0 ; else RSYSLOG_VERSION=8.24.0 ; fi && yum -y install rsyslog-$RSYSLOG_VERSION && yum clean all -y && rm -rf /var/cache/yum ---> Running in de38d962827b Loaded plugins: fastestmirror, ovl Determining fastest mirrors Resolving Dependencies --> Running transaction check ---> Package rsyslog.x86_64 0:8.24.0-57.el7_9.3 will be installed --> Processing Dependency: logrotate >= 3.5.2 for package: rsyslog-8.24.0-57.el7_9.3.x86_64 --> Processing Dependency: libestr >= 0.1.9 for package: rsyslog-8.24.0-57.el7_9.3.x86_64 --> Processing Dependency: libfastjson.so.4()(64bit) for package: rsyslog-8.24.0-57.el7_9.3.x86_64 --> Processing Dependency: libestr.so.0()(64bit) for package: rsyslog-8.24.0-57.el7_9.3.x86_64 --> Running transaction check ---> Package libestr.x86_64 0:0.1.9-2.el7 will be installed ---> Package libfastjson.x86_64 0:0.99.4-3.el7 will be installed ---> Package logrotate.x86_64 0:3.8.6-19.el7 will be installed --> Finished Dependency Resolution Dependencies Resolved ================================================================================ Package Arch Version Repository Size ================================================================================ Installing: rsyslog x86_64 8.24.0-57.el7_9.3 tf-mirrors.ci_repos_yum7-updates 622 k Installing for dependencies: libestr x86_64 0.1.9-2.el7 tf-mirrors.ci_repos_yum7-base 20 k libfastjson x86_64 0.99.4-3.el7 tf-mirrors.ci_repos_yum7-base 27 k logrotate x86_64 3.8.6-19.el7 tf-mirrors.ci_repos_yum7-base 70 k Transaction Summary ================================================================================ Install 1 Package (+3 Dependent packages) Total download size: 740 k Installed size: 2.1 M Downloading packages: -------------------------------------------------------------------------------- Total 2.8 MB/s | 740 kB 00:00 Running transaction check Running transaction test Transaction test succeeded Running transaction Installing : logrotate-3.8.6-19.el7.x86_64 1/4 Installing : libfastjson-0.99.4-3.el7.x86_64 2/4 Installing : libestr-0.1.9-2.el7.x86_64 3/4 Installing : rsyslog-8.24.0-57.el7_9.3.x86_64 4/4 Verifying : rsyslog-8.24.0-57.el7_9.3.x86_64 1/4 Verifying : libestr-0.1.9-2.el7.x86_64 2/4 Verifying : libfastjson-0.99.4-3.el7.x86_64 3/4 Verifying : logrotate-3.8.6-19.el7.x86_64 4/4 Installed: rsyslog.x86_64 0:8.24.0-57.el7_9.3 Dependency Installed: libestr.x86_64 0:0.1.9-2.el7 libfastjson.x86_64 0:0.99.4-3.el7 logrotate.x86_64 0:3.8.6-19.el7 Complete! Loaded plugins: fastestmirror, ovl Cleaning repos: contrail tf-mirrors.ci_repos_centos-openstack-queens : tf-mirrors.ci_repos_dockerrepo tf-mirrors.ci_repos_yum7-base : tf-mirrors.ci_repos_yum7-centos-sclo-rh : tf-mirrors.ci_repos_yum7-centosplus : tf-mirrors.ci_repos_yum7-extras tf-mirrors.ci_repos_yum7-updates : tpc Cleaning up list of fastest mirrors ---> Removed intermediate container de38d962827b ---> 2fb2988bcad4 Step 9/13 : COPY rsyslog.conf /etc/ ---> 055f9048722f Step 10/13 : COPY rsyslog.d/*.conf /etc/rsyslog.d/ ---> 36d2f0068ae8 Step 11/13 : ENV RSYSLOGD_PIDFILE=/var/run/rsyslogd.pid ---> Running in 4a16bb1655d9 ---> Removed intermediate container 4a16bb1655d9 ---> 00ab827b4579 Step 12/13 : ENTRYPOINT ["/contrail-entrypoint.sh"] ---> Running in ad01877077fd ---> Removed intermediate container ad01877077fd ---> 17404d7fa868 Step 13/13 : CMD rsyslogd -n -f /etc/rsyslog.conf -i $RSYSLOGD_PIDFILE ---> Running in 944555f89aaa ---> Removed intermediate container 944555f89aaa ---> 1189773f75e2 [Warning] One or more build-args [BASE_EXTRA_RPMS GENERAL_EXTRA_RPMS LINUX_DISTR LINUX_DISTR_VER PIP_REPOSITORY SITE_MIRROR UBUNTU_DISTR UBUNTU_DISTR_VERSION VENDOR_DOMAIN VENDOR_NAME YUM_ENABLE_REPOS] were not consumed Successfully built 1189773f75e2 Successfully tagged nexus.gz1.opensdn.io:5101/opensdn-external-rsyslogd:master-2_0_0_5-1 2025-08-13 14:07:37,697: INFO: Docker build duration: 67 seconds The push refers to repository [nexus.gz1.opensdn.io:5101/opensdn-external-rsyslogd] 56c8a0c71b16: Preparing da1f816ae719: Preparing ffafb4c16c88: Preparing cfa29d602f0a: Preparing 47d1d10354cb: Preparing 7956c6f468a8: Preparing 7a06bbc58aab: Preparing faddc5b78586: Preparing 1d10e8c7f01d: Preparing 91fda430a369: Preparing 174f56854903: Preparing 1d10e8c7f01d: Waiting 91fda430a369: Waiting 7956c6f468a8: Waiting 174f56854903: Waiting 7a06bbc58aab: Waiting faddc5b78586: Waiting 56c8a0c71b16: Pushed cfa29d602f0a: Pushed da1f816ae719: Pushed 47d1d10354cb: Layer already exists 7956c6f468a8: Layer already exists faddc5b78586: Layer already exists 7a06bbc58aab: Layer already exists 1d10e8c7f01d: Layer already exists ffafb4c16c88: Pushed 91fda430a369: Layer already exists 174f56854903: Layer already exists master-2_0_0_5-1: digest: sha256:8d700dc86a53f297aace331bf55993c6c768dc36d6ae4ff62d76f9116f3cd275 size: 2612 2025-08-13 14:07:40,130: INFO: Building opensdn-external-rsyslogd finished successfully, duration: 70 seconds