Skip to content

Commit 198510e

Browse files
authored
Add support for --grpc-client-tls-secure parameter
Support for tls secure requests
1 parent f53ad98 commit 198510e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

jsonnet/kube-thanos/kube-thanos-query.libsonnet

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,11 @@ function(params) {
114114
'--web.external-prefix=' + tq.config.externalPrefix,
115115
] else []
116116
) +
117+
(
118+
if std.objectHas(tq.config, 'grpcClientTlsSecure') then [
119+
'--grpc-client-tls-secure',
120+
] else []
121+
) +
117122
(
118123
if tq.config.queryTimeout != '' then [
119124
'--query.timeout=' + tq.config.queryTimeout,

0 commit comments

Comments
 (0)