UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects

SKIP UPGRADE: Initial work for package

Merged runyontr requested to merge initial-work into main
All threads resolved!
2 files
+ 34
0
Compare changes
  • Side-by-side
  • Inline
Files
2
{{- if .Values.networkPolicy.enabled }}
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: {{ template "loki.fullname" . }}
namespace: {{ .Release.Namespace }}
labels:
app: {{ template "loki.name" . }}
chart: {{ template "loki.chart" . }}
release: {{ .Release.Name }}
heritage: {{ .Release.Service }}
spec:
podSelector:
matchLabels:
name: {{ template "loki.fullname" . }}
app: {{ template "loki.name" . }}
release: {{ .Release.Name }}
ingress:
- from:
- podSelector:
matchLabels:
app: {{ template "client.name" . }}
release: {{ .Release.Name }}
- ports:
- port: {{ .Values.service.port }}
{{- end }}
Loading