This is an automated email from the ASF dual-hosted git repository.
acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push:
new 372a569 The Camel-Kubernetes Spring-boot itest needs to test the new
endpoints
372a569 is described below
commit 372a569d9607ce23d7b2841c76aa637d835914e1
Author: Andrea Cosentino <[email protected]>
AuthorDate: Mon Oct 15 08:30:29 2018 +0200
The Camel-Kubernetes Spring-boot itest needs to test the new endpoints
---
.../camel/itest/springboot/CamelKubernetesTest.java | 18 +++++++++++++++++-
1 file changed, 17 insertions(+), 1 deletion(-)
diff --git
a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelKubernetesTest.java
b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelKubernetesTest.java
index 3d44a26..506fc05 100644
---
a/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelKubernetesTest.java
+++
b/tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/CamelKubernetesTest.java
@@ -41,7 +41,23 @@ public class CamelKubernetesTest extends
AbstractSpringBootTestSupport {
@Test
public void componentTests() throws Exception {
- this.runComponentTest(config);
+ this.runComponentTest(createTestConfig(), "kubernetes-config-maps");
+ this.runComponentTest(createTestConfig(), "kubernetes-deployments");
+ this.runComponentTest(createTestConfig(), "kubernetes-hpa");
+ this.runComponentTest(createTestConfig(), "kubernetes-job");
+ this.runComponentTest(createTestConfig(), "kubernetes-namespaces");
+ this.runComponentTest(createTestConfig(), "kubernetes-nodes");
+ this.runComponentTest(createTestConfig(),
"kubernetes-persistent-volumes-claims");
+ this.runComponentTest(createTestConfig(),
"kubernetes-persistent-volumes");
+ this.runComponentTest(createTestConfig(), "kubernetes-pods");
+ this.runComponentTest(createTestConfig(),
"kubernetes-replication-controllers");
+ this.runComponentTest(createTestConfig(),
"kubernetes-resources-quota");
+ this.runComponentTest(createTestConfig(), "kubernetes-secrets");
+ this.runComponentTest(createTestConfig(),
"kubernetes-service-accounts");
+ this.runComponentTest(createTestConfig(), "kubernetes-services");
+ this.runComponentTest(createTestConfig(), "openshift-builds");
+ this.runComponentTest(createTestConfig(), "openshift-build-configs");
+
this.runModuleUnitTestsIfEnabled(config);
}