We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbce23f commit 6f68af1Copy full SHA for 6f68af1
jsonnet/kube-thanos/kube-thanos-query.libsonnet
@@ -13,6 +13,7 @@ local defaults = {
13
externalPrefix: '',
14
autoDownsampling: true,
15
resources: {},
16
+ grpcClientTlsSecure: false,
17
queryTimeout: '',
18
lookbackDelta: '',
19
ports: {
@@ -115,7 +116,7 @@ function(params) {
115
116
] else []
117
) +
118
(
- if std.objectHas(tq.config, 'grpcClientTlsSecure') then [
119
+ if tq.config.grpcClientTlsSecure then [
120
'--grpc-client-tls-secure',
121
122
0 commit comments