UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects

Setting recommended ingester settings from grafana Github, cleaning up values, adding queryUI templates

Merged Ryan Garcia requested to merge prod-tuning-recs into main
Files
9
{{- if and .Values.networkPolicies.enabled .Values.istio.enabled }}
# Allow traffic from the IngressGateway to the tempo query UI
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: ingress-tempo-istio-igw
namespace: {{ .Release.Namespace }}
spec:
podSelector:
matchLabels:
app.kubernetes.io/name: tempo
ingress:
- ports:
- port: 16686
protocol: TCP
from:
- podSelector:
matchLabels:
{{- toYaml .Values.networkPolicies.ingressLabels | nindent 10}}
namespaceSelector:
matchLabels:
app.kubernetes.io/name: istio-controlplane
{{- end }}
Loading