aboutsummaryrefslogtreecommitdiffstats
path: root/plans/so/integration-etsi-testing/so-simulators/package/docker/pom.xml
diff options
context:
space:
mode:
authorwaqas.ikram <waqas.ikram@est.tech>2023-02-28 14:21:57 +0000
committerwaqas.ikram <waqas.ikram@est.tech>2023-02-28 14:29:04 +0000
commit0c5dd89fb241bafccd139a3bb9fa348bb820f19d (patch)
tree7131197a775e2b1984ddda3bc8b170105188dabf /plans/so/integration-etsi-testing/so-simulators/package/docker/pom.xml
parent500a8e4001ee65aa5fd63db43657e2aa1c3095bd (diff)
[SO] Creation of kind cluster for CNFM CSIT
Change-Id: Icdad72e8bbcbd48cb92f630be0c39fb4af4bb47e Issue-ID: SO-4076 Signed-off-by: waqas.ikram <waqas.ikram@est.tech> Kind cluster is required to facilitate testing of remote cluster deployment using CNFM component Change-Id: I56c06832c35794dd6bbdd4aaf839c3c086360cb8 Signed-off-by: waqas.ikram <waqas.ikram@est.tech>
Diffstat (limited to 'plans/so/integration-etsi-testing/so-simulators/package/docker/pom.xml')
-rw-r--r--plans/so/integration-etsi-testing/so-simulators/package/docker/pom.xml19
1 files changed, 17 insertions, 2 deletions
diff --git a/plans/so/integration-etsi-testing/so-simulators/package/docker/pom.xml b/plans/so/integration-etsi-testing/so-simulators/package/docker/pom.xml
index 9173439f..2340579d 100644
--- a/plans/so/integration-etsi-testing/so-simulators/package/docker/pom.xml
+++ b/plans/so/integration-etsi-testing/so-simulators/package/docker/pom.xml
@@ -9,16 +9,22 @@
<artifactId>docker</artifactId>
<packaging>pom</packaging>
<name>${project.artifactId}</name>
+
+ <properties>
+ <skip-kind-cluster>true</skip-kind-cluster>
+ <version-fabric8>0.28.0</version-fabric8>
+ <version-apiVersion>1.23</version-apiVersion>
+ </properties>
<build>
<finalName>${project.artifactId}-${project.version}</finalName>
<plugins>
<plugin>
<groupId>io.fabric8</groupId>
<artifactId>docker-maven-plugin</artifactId>
- <version>0.28.0</version>
+ <version>${version-fabric8}</version>
<configuration>
<verbose>true</verbose>
- <apiVersion>1.23</apiVersion>
+ <apiVersion>${version-apiVersion}</apiVersion>
<pullRegistry>${docker.pull.registry}</pullRegistry>
<pushRegistry>${docker.push.registry}</pushRegistry>
<images>
@@ -145,6 +151,15 @@
</assembly>
</build>
</image>
+ <image>
+ <name>kind-cluster</name>
+ <build>
+ <cleanup>try</cleanup>
+ <dockerFileDir>docker-files/kind-cluster</dockerFileDir>
+ <dockerFile>Dockerfile.kind-cluster</dockerFile>
+ <skip>${skip-kind-cluster}</skip>
+ </build>
+ </image>
</images>
</configuration>
<executions>