diff options
author | 2019-07-22 11:06:29 -0400 | |
---|---|---|
committer | 2019-07-22 11:18:30 -0400 | |
commit | b36dee48ba9ae2a081ebba51cc4f5bea509321fe (patch) | |
tree | 5aed01f18dca000414554a1075e3c1eed573ad07 /k8s-bootstrap-container/Dockerfile-template | |
parent | fdfcdfaf73ec4f443f7bea0f9350d4e9e75cfdbb (diff) |
Update k8s & dmaap plugins
Also remove blueprint-based deployment of dashboard (now being done via Helm)
Issue-ID: DCAEGEN2-1651
Issue-ID: DCAEGEN2-1653
Issue-ID: DCAEGEN2-1667
Issue-ID: DCAEGEN2-1670
Issue-ID: DCAEGEN2-1318
Change-Id: I5d7b88d2bc6ed508f5500a1df553745f44d660af
Signed-off-by: Jack Lucas <jflucas@research.att.com>
Diffstat (limited to 'k8s-bootstrap-container/Dockerfile-template')
-rw-r--r-- | k8s-bootstrap-container/Dockerfile-template | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/k8s-bootstrap-container/Dockerfile-template b/k8s-bootstrap-container/Dockerfile-template index 9f95eb8..358f59b 100644 --- a/k8s-bootstrap-container/Dockerfile-template +++ b/k8s-bootstrap-container/Dockerfile-template @@ -49,12 +49,12 @@ RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py \ # Copy scripts RUN mkdir scripts -COPY build-plugins.sh load-blueprints.sh bootstrap.sh uninstall.sh scripts/ +COPY load-plugins.sh load-blueprints.sh bootstrap.sh uninstall.sh scripts/ RUN chmod +x /scripts/*.sh # Get plugin archives and build wagons -RUN scripts/build-plugins.sh ${DCAE_REPO} ${CCSDK_REPO} \ - && rm scripts/build-plugins.sh +RUN scripts/load-plugins.sh ${DCAE_REPO} ${CCSDK_REPO} \ + && rm scripts/load-plugins.sh # Load blueprints and input templates RUN scripts/load-blueprints.sh ${BP_REPO} \ |