From 0bb2711966ae0179a28a81a1c8b53803584220c2 Mon Sep 17 00:00:00 2001 From: Ruben Vargas Date: Thu, 16 Jan 2020 15:34:04 -0600 Subject: [PATCH] Address formating comments Signed-off-by: Ruben Vargas --- pkg/storage/elasticsearch.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkg/storage/elasticsearch.go b/pkg/storage/elasticsearch.go index 7d5699031..fb524a5f8 100644 --- a/pkg/storage/elasticsearch.go +++ b/pkg/storage/elasticsearch.go @@ -39,12 +39,10 @@ type ElasticsearchDeployment struct { } func (ed *ElasticsearchDeployment) injectArguments(container *corev1.Container) { - container.Args = append(container.Args, - "--es.server-urls="+elasticsearchURL) + container.Args = append(container.Args, "--es.server-urls="+elasticsearchURL) if util.FindItem("--es.tls=", container.Args) == "" { container.Args = append(container.Args, "--es.tls=true") } - container.Args = append(container.Args, "--es.tls.ca="+caPath, "--es.tls.cert="+certPath,