File tree 6 files changed +6
-4
lines changed 6 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ Kubernetes: `>= 1.19.0-0`
27
27
| frrk8s.affinity | object | ` {} ` | |
28
28
| frrk8s.alwaysBlock | string | ` "" ` | |
29
29
| frrk8s.disableCertRotation | bool | ` false ` | |
30
+ | frrk8s.frr.acceptIncomingBGPConnections | bool | ` false ` | |
30
31
| frrk8s.frr.image.pullPolicy | string | ` nil ` | |
31
32
| frrk8s.frr.image.repository | string | ` "quay.io/frrouting/frr" ` | |
32
33
| frrk8s.frr.image.tag | string | ` "9.1.0" ` | |
Original file line number Diff line number Diff line change 50
50
#
51
51
vtysh_enable=yes
52
52
zebra_options=" -A 127.0.0.1 -s 90000000"
53
- bgpd_options=" -A 127.0.0.1"
53
+ bgpd_options=" -A 127.0.0.1 {{ if not .Values.frrk8s.frr.acceptIncomingBGPConnections }} -p 0 {{- end }} "
54
54
ospfd_options=" -A 127.0.0.1"
55
55
ospf6d_options=" -A ::1"
56
56
ripd_options=" -A 127.0.0.1"
Original file line number Diff line number Diff line change @@ -163,6 +163,7 @@ frrk8s:
163
163
metricsPort : 7573
164
164
resources : {}
165
165
secureMetricsPort : 9141
166
+ acceptIncomingBGPConnections : false
166
167
reloader :
167
168
resources : {}
168
169
frrMetrics :
Original file line number Diff line number Diff line change @@ -836,7 +836,7 @@ data:
836
836
#
837
837
vtysh_enable=yes
838
838
zebra_options=" -A 127.0.0.1 -s 90000000"
839
- bgpd_options=" -A 127.0.0.1"
839
+ bgpd_options=" -A 127.0.0.1 -p 0 "
840
840
ospfd_options=" -A 127.0.0.1"
841
841
ospf6d_options=" -A ::1"
842
842
ripd_options=" -A 127.0.0.1"
Original file line number Diff line number Diff line change @@ -805,7 +805,7 @@ data:
805
805
#
806
806
vtysh_enable=yes
807
807
zebra_options=" -A 127.0.0.1 -s 90000000"
808
- bgpd_options=" -A 127.0.0.1"
808
+ bgpd_options=" -A 127.0.0.1 -p 0 "
809
809
ospfd_options=" -A 127.0.0.1"
810
810
ospf6d_options=" -A ::1"
811
811
ripd_options=" -A 127.0.0.1"
Original file line number Diff line number Diff line change 46
46
#
47
47
vtysh_enable=yes
48
48
zebra_options=" -A 127.0.0.1 -s 90000000"
49
- bgpd_options=" -A 127.0.0.1"
49
+ bgpd_options=" -A 127.0.0.1 -p 0 "
50
50
ospfd_options=" -A 127.0.0.1"
51
51
ospf6d_options=" -A ::1"
52
52
ripd_options=" -A 127.0.0.1"
You can’t perform that action at this time.
0 commit comments