You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2021/08/05 07:26:18 UTC

[camel] branch main updated: camel-kubernetes: fixed commands in test documentation (#5929)

This is an automated email from the ASF dual-hosted git repository.

orpiske pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new 763d14a  camel-kubernetes: fixed commands in test documentation (#5929)
763d14a is described below

commit 763d14a171aa5ca25909118dc774eaabc3da8357
Author: Otavio Rodolfo Piske <or...@users.noreply.github.com>
AuthorDate: Thu Aug 5 09:25:49 2021 +0200

    camel-kubernetes: fixed commands in test documentation (#5929)
---
 components/camel-kubernetes/README.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/components/camel-kubernetes/README.md b/components/camel-kubernetes/README.md
index 272c160..45c756f 100644
--- a/components/camel-kubernetes/README.md
+++ b/components/camel-kubernetes/README.md
@@ -21,12 +21,12 @@ export KUBE_TOKEN=$(kubectl get secrets -o jsonpath="{.items[?(@.metadata.annota
 4. Get the host:
 
 ```
-export KIND_PORT=$(docker inspect --format='{{range $p, $conf := .NetworkSettings.Ports}}{{(index $conf 0).HostPort}} {{end}}'  kind-control-plane)
+export KIND_PORT=$(docker inspect --format='{{range $p, $conf := .NetworkSettings.Ports}}{{(index $conf 0).HostPort}}{{end}}'  kind-control-plane)
 export KUBE_HOST=https://localhost:$KIND_PORT
 ```
 
 5. Run the test:
 ```
-mvn -Dtest=KubernetesConfigMapsConsumerTest -Dkubernetes.test.auth="$KUBE_TOKEN" -Dkubernetes.test.host=$KUBE_HOST -Dkubernetes.test.host.k8s=true clean verify
+mvn -Dkubernetes.test.auth="$KUBE_TOKEN" -Dkubernetes.test.host=$KUBE_HOST -Dkubernetes.test.host.k8s=true clean verify
 ```