16 lines
347 B
YAML
16 lines
347 B
YAML
{{- if .Values.clusterConfig.cilium.enabled }}
|
|
apiVersion: cilium.io/v2
|
|
kind: CiliumNetworkPolicy
|
|
metadata:
|
|
name: allow-api-matomo
|
|
namespace: analytics
|
|
spec:
|
|
description: Allow matomo api
|
|
egress:
|
|
- toFQDNs:
|
|
- matchPattern: api.matomo.org
|
|
endpointSelector:
|
|
matchLabels:
|
|
app.kubernetes.io/instance: matomo
|
|
{{- end }}
|