diff options
author | Grinberg Moti <mg877n@att.com> | 2017-02-23 11:24:34 +0200 |
---|---|---|
committer | Grinberg Moti <mg877n@att.com> | 2017-02-23 11:37:20 +0200 |
commit | c3bda48fbb4250bc409afe44684a147d0b08573c (patch) | |
tree | 2a0285944112857052d2368fc64d24ec95e65260 /sdc-os-chef/pom.xml | |
parent | 98b4dfecdcd2bc632b2977fa20ed200411e9b16b (diff) |
set url to https://omnitruck.chef.io/install.sh
Change-Id: I1eb228adf80e44d97a0a95eb37477ee1c0d76ab9
Signed-off-by: Grinberg Moti <mg877n@att.com>
Diffstat (limited to 'sdc-os-chef/pom.xml')
-rw-r--r-- | sdc-os-chef/pom.xml | 33 |
1 files changed, 31 insertions, 2 deletions
diff --git a/sdc-os-chef/pom.xml b/sdc-os-chef/pom.xml index 3d761df5e6..150b52f54f 100644 --- a/sdc-os-chef/pom.xml +++ b/sdc-os-chef/pom.xml @@ -92,6 +92,25 @@ </resources> </configuration> </execution> + <execution> + <id>copy-resources-sanity</id> + <!-- here the phase you need --> + <phase>validate</phase> + <goals> + <goal>copy-resources</goal> + </goals> + <configuration> + <outputDirectory>${basedir}/sdc-frontend</outputDirectory> + <resources> + <resource> + <directory>${project.parent.basedir}/openecomp-ui/target</directory> + <includes> + <include>onboarding-fe-${project.version}.war</include> + </includes> + </resource> + </resources> + </configuration> + </execution> </executions> </plugin> @@ -157,6 +176,16 @@ <dockerFileDir>${project.basedir}/sdc-cassandra</dockerFileDir> </build> </image> + + <!-- Build sanity image --> + <image> + <name>openecomp/sdc-sanity:%l</name> + <alias>sdc-sanity</alias> + <build> + <cleanup>try</cleanup> + <dockerFileDir>${project.basedir}/sdc-sanity</dockerFileDir> + </build> + </image> </images> </configuration> @@ -169,7 +198,7 @@ </goals> <configuration> <removeAll>true</removeAll> - <image>openecomp/sdc-backend:%l,openecomp/sdc-frontend:%l,openecomp/sdc-elasticsearch:%l,openecomp/sdc-kibana:%l</image> + <image>openecomp/sdc-backend:%l,openecomp/sdc-frontend:%l,openecomp/sdc-elasticsearch:%l,openecomp/sdc-kibana:%l,openecomp/sdc-sanity:%l</image> </configuration> </execution> @@ -188,7 +217,7 @@ <goal>push</goal> </goals> <configuration> - <image>openecomp/sdc-backend:%l,openecomp/sdc-frontend:%l,openecomp/sdc-elasticsearch:%l,openecomp/sdc-kibana:%l</image> + <image>openecomp/sdc-backend:%l,openecomp/sdc-frontend:%l,openecomp/sdc-elasticsearch:%l,openecomp/sdc-kibana:%l,openecomp/sdc-sanity:%l</image> </configuration> </execution> </executions> |