16 lines
383 B
YAML
16 lines
383 B
YAML
{{- if .Values.clusterConfig.cilium.enabled }}
|
|
apiVersion: cilium.io/v2
|
|
kind: CiliumNetworkPolicy
|
|
metadata:
|
|
name: allow-plume
|
|
namespace: {{ .Release.Namespace }}
|
|
spec:
|
|
egress:
|
|
- toFQDNs:
|
|
- matchPattern: 'plume.data.oceanbox.io'
|
|
- matchPattern: 'plume.ekman.oceanbox.io'
|
|
endpointSelector:
|
|
matchLabels:
|
|
app.kubernetes.io/name: atlantis
|
|
{{- end }}
|