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 fc8556a The Camel-Kubernetes Karaf tests need to test the new
endpoints
fc8556a is described below
commit fc8556a1a92bec08f90ab41857688354f3618171
Author: Andrea Cosentino <[email protected]>
AuthorDate: Mon Oct 15 08:25:47 2018 +0200
The Camel-Kubernetes Karaf tests need to test the new endpoints
---
.../apache/camel/itest/karaf/CamelKubernetesTest.java | 17 ++++++++++++++++-
1 file changed, 16 insertions(+), 1 deletion(-)
diff --git
a/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelKubernetesTest.java
b/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelKubernetesTest.java
index bf92af9..2657592 100644
---
a/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelKubernetesTest.java
+++
b/tests/camel-itest-karaf/src/test/java/org/apache/camel/itest/karaf/CamelKubernetesTest.java
@@ -27,7 +27,22 @@ public class CamelKubernetesTest extends BaseKarafTest {
@Test
public void test() throws Exception {
- testComponent(COMPONENT);
+ testComponent(COMPONENT, "kubernetes-config-maps");
+ testComponent(COMPONENT, "kubernetes-deployments");
+ testComponent(COMPONENT, "kubernetes-hpa");
+ testComponent(COMPONENT, "kubernetes-job");
+ testComponent(COMPONENT, "kubernetes-namespaces");
+ testComponent(COMPONENT, "kubernetes-nodes");
+ testComponent(COMPONENT, "kubernetes-persistent-volumes-claims");
+ testComponent(COMPONENT, "kubernetes-persistent-volumes");
+ testComponent(COMPONENT, "kubernetes-pods");
+ testComponent(COMPONENT, "kubernetes-replication-controllers");
+ testComponent(COMPONENT, "kubernetes-resources-quota");
+ testComponent(COMPONENT, "kubernetes-secrets");
+ testComponent(COMPONENT, "kubernetes-service-accounts");
+ testComponent(COMPONENT, "kubernetes-services");
+ testComponent(COMPONENT, "openshift-builds");
+ testComponent(COMPONENT, "openshift-build-configs");
}