diff options
author | Mandeep Khinda <mandeep.khinda@amdocs.com> | 2017-09-08 05:20:30 +0000 |
---|---|---|
committer | Mandeep Khinda <mandeep.khinda@amdocs.com> | 2017-09-08 15:45:08 +0000 |
commit | dc2dc86377e64b001c680702773fa39804af170f (patch) | |
tree | b7d01fd437abc61aacaa2af0273da1c299957246 /kubernetes/config/docker/init/Dockerfile | |
parent | f6a39a8d6b2d2ee44d157c71a396e4de32ccba69 (diff) |
converting config to helm and setting demo values
To be able to run the vFW/vLB demos, these needed to be done
manually and it was a big mess.
With the power of helm we can now pass data into the config pod
and make some substitutions
Issue-ID: OOM-277
Change-Id: Ie167920fac7896661b81443aa460ce2e6f615187
Signed-off-by: Mandeep Khinda <mandeep.khinda@amdocs.com>
Diffstat (limited to 'kubernetes/config/docker/init/Dockerfile')
-rw-r--r-- | kubernetes/config/docker/init/Dockerfile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/kubernetes/config/docker/init/Dockerfile b/kubernetes/config/docker/init/Dockerfile index a1eb021b69..b6be90b247 100644 --- a/kubernetes/config/docker/init/Dockerfile +++ b/kubernetes/config/docker/init/Dockerfile @@ -1,5 +1,13 @@ from ubuntu:16.04 +ENV no_proxy "localhost,127.0.0.1,.cluster.local,$KUBERNETES_SERVICE_HOST" +# Setup Corporate proxy +ENV https_proxy ${HTTPS_PROXY} +ENV http_proxy ${HTTP_PROXY} + +# Additional packages +RUN apt-get update +RUN apt-get install -y openssl vim-common RUN mkdir -p /opt/config/src/ COPY onap-cfg.tar.gz /tmp/ |