UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects

Added Tempo Zipkin Egress Policy

Merged Patrick Kelly requested to merge tempo-np into main
4 files
+ 28
2
Compare changes
  • Side-by-side
  • Inline
Files
4
{{- if and .Values.networkPolicies.enabled }}
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: allow-tempo-egress
namespace: {{ .Release.Namespace }}
spec:
podSelector: {}
policyTypes:
- Egress
# Allow access to zipkin
egress:
- to:
- namespaceSelector:
matchLabels:
app.kubernetes.io/name: tempo
podSelector:
matchLabels:
app.kubernetes.io/name: tempo
ports:
- port: 9411
{{- end }}
Loading