From 0d75ec83be35f55be7ff6e3c7ac3c40bcc7a52e8 Mon Sep 17 00:00:00 2001 From: Ron Shacham Date: Thu, 11 Jun 2020 23:22:01 -0400 Subject: [PATCH] Fixed up Dockerfile for db prepopulate Signed-off-by: Ron Shacham Change-Id: Id581ae810ea26984556596014e31a22b3d0027c5 --- test/populatedb/Dockerfile | 4 +--- test/populatedb/helm/templates/job.yaml | 2 +- test/populatedb/populate_db.sh | 2 +- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/test/populatedb/Dockerfile b/test/populatedb/Dockerfile index 2159db6..479fcd5 100644 --- a/test/populatedb/Dockerfile +++ b/test/populatedb/Dockerfile @@ -20,8 +20,6 @@ RUN mkdir /playpen/src ENV LD_LIBRARY_PATH=/usr/local/lib -RUN git config --global http.proxy http://one.proxy.att.com:8080 - RUN apt-get install -y cpputest RUN apt-get remove -y libboost-all-dev RUN apt-get install -y libboost-all-dev @@ -46,4 +44,4 @@ ENV DBAAS_SERVICE_HOST="service-ricplt-dbaas-tcp.ricplt" WORKDIR /playpen/src -CMD ./write_sdl \ No newline at end of file +CMD ./write_sdl diff --git a/test/populatedb/helm/templates/job.yaml b/test/populatedb/helm/templates/job.yaml index 8680c17..d901e4b 100755 --- a/test/populatedb/helm/templates/job.yaml +++ b/test/populatedb/helm/templates/job.yaml @@ -23,7 +23,7 @@ spec: spec: containers: - name: write-sdl - image: localhost:5000/ts-write-sdl:0.0.1 + image: ts-write-sdl:0.0.1 imagePullPolicy: IfNotPresent restartPolicy: Always restartPolicy: Never diff --git a/test/populatedb/populate_db.sh b/test/populatedb/populate_db.sh index 6ae5d03..db18b69 100755 --- a/test/populatedb/populate_db.sh +++ b/test/populatedb/populate_db.sh @@ -19,6 +19,6 @@ helm delete --purge dbprepop -docker build --tag localhost:5000/ts-write-sdl:0.0.1 . +docker build --tag ts-write-sdl:0.0.1 . helm install helm --name dbprepop --namespace ricplt -- 2.16.6