diff options
author | vasraz <vasyl.razinkov@est.tech> | 2021-12-08 22:12:52 +0000 |
---|---|---|
committer | Vasyl Razinkov <vasyl.razinkov@est.tech> | 2021-12-09 09:44:10 +0000 |
commit | 8b1002a99724180cc9c134a04a5eb0763fde872c (patch) | |
tree | 8e1061f97b28c193d9448885eea3bb2be4f68077 /sdc-os-chef/pom.xml | |
parent | afa3fb50409b8c68e35db42e77a962b76702f8d9 (diff) |
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
Diffstat (limited to 'sdc-os-chef/pom.xml')
-rw-r--r-- | sdc-os-chef/pom.xml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sdc-os-chef/pom.xml b/sdc-os-chef/pom.xml index f9d4352220..7374cb4680 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> |