Pull docker images through nexus proxy 23/142123/1 0.10.2
authorFiete Ostkamp <fiete.ostkamp@telekom.de>
Fri, 26 Sep 2025 07:29:25 +0000 (09:29 +0200)
committerFiete Ostkamp <fiete.ostkamp@telekom.de>
Fri, 26 Sep 2025 07:29:25 +0000 (09:29 +0200)
Issue-ID: MULTICLOUD-1514
Change-Id: I2ec465b04609e11cfff924116737fdcdb44a49b4
Signed-off-by: Fiete Ostkamp <fiete.ostkamp@telekom.de>
20 files changed:
build/Dockerfile
deployments/build.sh
kud/build/Dockerfile
kud/deployment_infra/installers/Dockerfile.iavf-driver-installer
kud/deployment_infra/installers/Dockerfile.qat-driver-installer
kud/tests/cFW/firewall/Dockerfile
kud/tests/cFW/packetgen/Dockerfile
kud/tests/cFW/sink/Dockerfile
kud/tests/cFW/vpp/Dockerfile
kud/tests/generic_simulator/Dockerfile
kud/tests/sdwan/build/Dockerfile_1806_mwan3.tpl
kud/tests/sdwan/build/Dockerfile_1806_mwan3_noproxy.tpl
src/clm/scripts/Dockerfile
src/monitor/build/Dockerfile
src/ncm/scripts/Dockerfile
src/orchestrator/scripts/Dockerfile
src/ovnaction/scripts/Dockerfile
src/rsync/scripts/Dockerfile
src/tools/emcoui/Dockerfile
src/tools/emcoui/middle_end/Dockerfile

index 2378773..fa54a0b 100644 (file)
@@ -18,7 +18,7 @@ RUN cd src/rsync && make all
 RUN cd src/ovnaction && make all
 RUN cd src/clm && make all
 
-FROM ubuntu:16.04
+FROM nexus3.onap.org:10001/ubuntu:16.04
 
 WORKDIR /opt/emco
 RUN groupadd -r emco && useradd -r -g emco emco
index b1e0771..be7681c 100755 (executable)
@@ -23,7 +23,7 @@ function _compile_src {
     pushd $k8s_path/src/k8splugin/
     pwd
     # mount directory and build in container (thus not relying on the state of the runner)
-    docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp golang:1.14 make
+    docker run --rm -v "$PWD":/usr/src/myapp -w /usr/src/myapp nexus3.onap.org:10001/golang:1.14.1 make
     popd
 }
 
index 72c46f7..9b6da30 100644 (file)
@@ -1,4 +1,4 @@
-FROM ubuntu:18.04 as base
+FROM nexus3.onap.org:10001/ubuntu:18.04 as base
 ARG KUD_ENABLE_TESTS=false
 ARG KUD_PLUGIN_ENABLED=false
 ARG CONTAINER_RUNTIME=docker
index 8d4593a..ea559d1 100644 (file)
@@ -1,4 +1,4 @@
-FROM ubuntu:18.04
+FROM nexus3.onap.org:10001/ubuntu:18.04
 
 ENV IAVF_DRIVER_VERSION=4.0.2
 ENV IAVF_DRIVER_DOWNLOAD_URL=https://downloadmirror.intel.com/30305/eng/iavf-${IAVF_DRIVER_VERSION}.tar.gz
index b85d0e2..5088cf3 100644 (file)
@@ -1,4 +1,4 @@
-FROM ubuntu:18.04
+FROM nexus3.onap.org:10001/ubuntu:18.04
 
 ENV QAT_DRIVER_VERSION=1.7.l.4.12.0-00011
 ENV QAT_DRIVER_DOWNLOAD_URL=https://01.org/sites/default/files/downloads/qat${QAT_DRIVER_VERSION}.tar.gz
index 086f30c..60b75b1 100644 (file)
@@ -1,4 +1,4 @@
-FROM ubuntu:18.04 as builder
+FROM nexus3.onap.org:10001/ubuntu:18.04 as builder
 MAINTAINER Victor Morales <electrocucaracha@gmail.com>
 
 ENV demo_artifacts_version "1.6.0"
index 074fec0..995d466 100644 (file)
@@ -1,4 +1,4 @@
-FROM ubuntu:18.04 as builder
+FROM nexus3.onap.org:10001/ubuntu:18.04 as builder
 MAINTAINER Victor Morales <electrocucaracha@gmail.com>
 
 ENV demo_artifacts_version "1.6.0"
index 3d93413..e66f747 100644 (file)
@@ -1,4 +1,4 @@
-FROM ubuntu:18.04
+FROM nexus3.onap.org:10001/ubuntu:18.04
 MAINTAINER Ritu Sood <ritu.sood@intel.com>
 
 COPY init.sh /opt/init.sh
index a04e023..e2ec9e2 100644 (file)
@@ -1,4 +1,4 @@
-FROM ubuntu:18.04
+FROM nexus3.onap.org:10001/ubuntu:18.04
 MAINTAINER Victor Morales <electrocucaracha@gmail.com>
 
 ENV VERSION "19.01.2-release"
index 202cafc..38d4c31 100644 (file)
@@ -7,7 +7,7 @@
 # http://www.apache.org/licenses/LICENSE-2.0
 ##############################################################################
 
-FROM python:2.7
+FROM nexus3.onap.org:10001/python:2.7
 
 ARG HTTP_PROXY=${HTTP_PROXY}
 ARG HTTPS_PROXY=${HTTPS_PROXY}
index 85c7d35..e094196 100644 (file)
@@ -1,4 +1,4 @@
-FROM openwrt-1806-4-base
+FROM nexus3.onap.org:10001/openwrt-1806-4-base
 
 #EXPOSE 80
 ENV http_proxy={docker_proxy}
index 87dc135..9ce7d6a 100644 (file)
@@ -7,7 +7,7 @@
 # http://www.apache.org/licenses/LICENSE-2.0
 ##############################################################################
 
-FROM ubuntu:18.04
+FROM nexus3.onap.org:10001/ubuntu:18.04
 
 ARG HTTP_PROXY=${HTTP_PROXY}
 ARG HTTPS_PROXY=${HTTPS_PROXY}
index 9ecff16..faac2e5 100644 (file)
@@ -1,10 +1,10 @@
-FROM golang:1.14.1
+FROM nexus3.onap.org:10001/golang:1.14.1
 
 WORKDIR /go/src/github.com/onap/multicloud-k8s/src/monitor
 COPY ./ ./
 RUN make all
 
-FROM ubuntu:16.04
+FROM nexus3.onap.org:10001/ubuntu:16.04
 
 WORKDIR /opt/monitor
 RUN groupadd -r monitor && useradd -r -g monitor monitor
@@ -13,4 +13,3 @@ COPY --chown=monitor --from=0 /go/src/github.com/onap/multicloud-k8s/src/monitor
 
 USER monitor
 ENTRYPOINT ["/opt/monitor/monitor"]
-
index d1b5867..a98307c 100644 (file)
@@ -7,7 +7,7 @@
 # http://www.apache.org/licenses/LICENSE-2.0
 ##############################################################################
 
-FROM ubuntu:18.04
+FROM nexus3.onap.org:10001/ubuntu:18.04
 
 ARG HTTP_PROXY=${HTTP_PROXY}
 ARG HTTPS_PROXY=${HTTPS_PROXY}
index b894f47..e2ac7bf 100644 (file)
@@ -7,7 +7,7 @@
 # http://www.apache.org/licenses/LICENSE-2.0
 ##############################################################################
 
-FROM ubuntu:18.04
+FROM nexus3.onap.org:10001/ubuntu:18.04
 
 ARG HTTP_PROXY=${HTTP_PROXY}
 ARG HTTPS_PROXY=${HTTPS_PROXY}
@@ -27,4 +27,4 @@ ADD --chown=onap ./orchestrator ./
 
 USER onap
 
-CMD ["./orchestrator"]
\ No newline at end of file
+CMD ["./orchestrator"]
index a9d4d46..74392be 100644 (file)
@@ -7,7 +7,7 @@
 # http://www.apache.org/licenses/LICENSE-2.0
 ##############################################################################
 
-FROM ubuntu:18.04
+FROM nexus3.onap.org:10001/ubuntu:18.04
 
 ARG HTTP_PROXY=${HTTP_PROXY}
 ARG HTTPS_PROXY=${HTTPS_PROXY}
index 99df6cd..36e2e30 100644 (file)
@@ -7,7 +7,7 @@
 # http://www.apache.org/licenses/LICENSE-2.0
 ##############################################################################
 
-FROM ubuntu:18.04
+FROM nexus3.onap.org:10001/ubuntu:18.04
 
 ARG HTTP_PROXY=${HTTP_PROXY}
 ARG HTTPS_PROXY=${HTTPS_PROXY}
index 8224d92..7ed901f 100644 (file)
@@ -14,7 +14,7 @@
 # ========================================================================
 
 # => Build container
-FROM node:alpine as builder
+FROM nexus3.onap.org:10001/node:alpine as builder
 WORKDIR /app
 COPY package.json .
 COPY package-lock.json .
@@ -25,7 +25,7 @@ COPY public ./public
 RUN REACT_APP_VERSION=v1.2.0 npm run build
 
 # => Run container
-FROM nginx:1.15.2-alpine
+FROM nexus3.onap.org:10001/nginx:1.15.2-alpine
 
 # Nginx config
 COPY default.conf /etc/nginx/conf.d/
index 4e35322..80284ee 100644 (file)
 # limitations under the License.
 # ========================================================================
 
-FROM golang:1.14.1
+FROM nexus3.onap.org:10001/golang:1.14.1
 
 # Set the Current Working Directory inside the container
 WORKDIR /src
 COPY ./ ./
-RUN make all 
+RUN make all
 
 # Build the Go app
-FROM ubuntu:16.04
+FROM nexus3.onap.org:10001/ubuntu:16.04
 WORKDIR /opt/emco
 RUN groupadd -r emco && useradd -r -g emco emco
 RUN chown emco:emco /opt/emco -R