Repository: camel Updated Branches: refs/heads/master e282d8cf3 -> 9a8308710
Add Labels to Kubernetes configuration UriParam Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/9a830871 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/9a830871 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/9a830871 Branch: refs/heads/master Commit: 9a830871080d5a30abea7daaa77f06e22d40d8ef Parents: e282d8c Author: Andrea Cosentino <[email protected]> Authored: Sun Apr 3 09:30:20 2016 +0200 Committer: Andrea Cosentino <[email protected]> Committed: Sun Apr 3 09:30:20 2016 +0200 ---------------------------------------------------------------------- .../kubernetes/KubernetesConfiguration.java | 24 ++++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/9a830871/components/camel-kubernetes/src/main/java/org/apache/camel/component/kubernetes/KubernetesConfiguration.java ---------------------------------------------------------------------- diff --git a/components/camel-kubernetes/src/main/java/org/apache/camel/component/kubernetes/KubernetesConfiguration.java b/components/camel-kubernetes/src/main/java/org/apache/camel/component/kubernetes/KubernetesConfiguration.java index e36f771..dc5c32e 100644 --- a/components/camel-kubernetes/src/main/java/org/apache/camel/component/kubernetes/KubernetesConfiguration.java +++ b/components/camel-kubernetes/src/main/java/org/apache/camel/component/kubernetes/KubernetesConfiguration.java @@ -37,10 +37,10 @@ public class KubernetesConfiguration { @UriParam private DefaultKubernetesClient kubernetesClient; - @UriParam + @UriParam(label = "security") private String username; - @UriParam + @UriParam(label = "security") private String password; @UriParam(label = "producer", enums = "listNamespaces,listNamespacesByLabels,getNamespace,createNamespace,deleteNamespace,listServices,listServicesByLabels,getService,createService," @@ -54,34 +54,34 @@ public class KubernetesConfiguration { @UriParam private String apiVersion; - @UriParam + @UriParam(label = "security") private String caCertData; - @UriParam + @UriParam(label = "security") private String caCertFile; - @UriParam + @UriParam(label = "security") private String clientCertData; - @UriParam + @UriParam(label = "security") private String clientCertFile; - @UriParam + @UriParam(label = "security") private String clientKeyAlgo; - @UriParam + @UriParam(label = "security") private String clientKeyData; - @UriParam + @UriParam(label = "security") private String clientKeyFile; - @UriParam + @UriParam(label = "security") private String clientKeyPassphrase; - @UriParam + @UriParam(label = "security") private String oauthToken; - @UriParam + @UriParam(label = "security") private Boolean trustCerts; @UriParam(label = "consumer")
