This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch sandbox/camel-3.x in repository https://gitbox.apache.org/repos/asf/camel.git
commit 94b190df564b1079b2693541802104492418d56c 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"); }
