Improve fast-build profile
Remove docker build from 'fast-build' profile
Change-Id: I90b79bc05ecd159b5c6ff62f195507476dcdaa38
Signed-off-by: Vasyl Razinkov <vasyl.razinkov@est.tech>
Issue-ID: SDC-3804
diff --git a/sdc-os-chef/pom.xml b/sdc-os-chef/pom.xml
index f9d4352..7374cb4 100644
--- a/sdc-os-chef/pom.xml
+++ b/sdc-os-chef/pom.xml
@@ -61,18 +61,18 @@
<configuration>
<verbose>${verbose}</verbose>
<apiVersion>${docker.api.version}</apiVersion>
- <registry>nexus3.onap.org:10001</registry>
+ <registry>${docker.registry}</registry>
<authConfig>
<pull>
- <username>docker</username>
- <password>docker</password>
+ <username>${docker.username}</username>
+ <password>${docker.password}</password>
</pull>
</authConfig>
<images>
<!-- Build cassandra image -->
<image>
- <name>onap/sdc-cassandra</name>
+ <name>${docker.namespace}/sdc-cassandra</name>
<alias>sdc-cassandra</alias>
<build>
<cleanup>try</cleanup>
@@ -98,7 +98,7 @@
</goals>
<configuration>
<removeAll>true</removeAll>
- <image>onap/sdc-cassandra</image>
+ <image>${docker.namespace}/sdc-cassandra</image>
</configuration>
</execution>
@@ -117,7 +117,7 @@
<goal>push</goal>
</goals>
<configuration>
- <image>onap/sdc-cassandra</image>
+ <image>${docker.namespace}/sdc-cassandra</image>
</configuration>
</execution>
</executions>