mirror of
https://github.com/YuzuZensai/netbird-kubernetes-operator.git
synced 2026-09-13 10:49:15 +00:00
28 lines
665 B
YAML
28 lines
665 B
YAML
{{- range $k, $v := $.Values.ingress.policies }}
|
|||
|
|
---
|
||
|
|
apiVersion: netbird.io/v1
|
||
|
|
kind: NBPolicy
|
||
|
|
metadata:
|
||
|
|
finalizers:
|
||
|
|
- netbird.io/cleanup
|
||
|
|
labels:
|
||
|
|
app.kubernetes.io/component: operator
|
||
|
|
{{- include "kubernetes-operator.labels" $ | nindent 4 }}
|
||
|
|
name: {{ $k }}
|
||
|
|
spec:
|
||
|
|
name: {{ $v.name }}
|
||
|
|
sourceGroups:
|
||
|
|
{{ toYaml $v.sourceGroups | nindent 4}}
|
||
|
|
{{- if $v.description }}
|
||
|
|
description: {{ $v.description }}
|
||
|
|
{{- end }}
|
||
|
|
{{- if $v.protocols }}
|
||
|
|
protocols: {{ $v.protocols }}
|
||
|
|
{{- end }}
|
||
|
|
{{- if $v.ports }}
|
||
|
|
ports: {{ $v.ports }}
|
||
|
|
{{- end }}
|
||
|
|
{{- if hasKey $v "bidirectional" }}
|
||
|
|
bidirectional: {{ $v.bidirectional }}
|
||
|
|
{{- end }}
|
||
|
|
{{- end }}
|