[bitnami/thanos] Fix thanos query grpc nodeport (#8250)

This commit is contained in:
boernd
2021-11-26 17:09:01 +01:00
committed by GitHub
parent 46b1e90ec9
commit 05c57f7ea3
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -28,4 +28,4 @@ name: thanos
sources:
- https://github.com/bitnami/bitnami-docker-thanos
- https://thanos.io
version: 8.1.0
version: 8.1.1
+2 -2
View File
@@ -45,8 +45,8 @@ spec:
targetPort: grpc
protocol: TCP
name: grpc
{{- if and (or (eq $query.service.type "NodePort") (eq $query.service.type "LoadBalancer")) $query.service.nodePorts.http }}
nodePort: {{ $query.service.nodePorts.http }}
{{- if and (or (eq $query.service.type "NodePort") (eq $query.service.type "LoadBalancer")) $query.service.nodePorts.grpc }}
nodePort: {{ $query.service.nodePorts.grpc }}
{{- else if eq $query.service.type "ClusterIP" }}
nodePort: null
{{- end }}