Skip to content

Commit a61e370

Browse files
committed
Fixed port checking
1 parent e87a987 commit a61e370

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

.github/workflows/endtoend_test_containerized_metallb.yml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -31,23 +31,24 @@ jobs:
3131
# Apply MetalLB config for automatic IP assignment
3232
cat <<EOF | kubectl apply -f -
3333
apiVersion: metallb.io/v1beta1
34-
kind: BGPAdvertisement
34+
kind: IPAddressPool
3535
metadata:
36-
name: example
36+
name: default
3737
namespace: metallb-system
3838
spec:
39-
communities:
40-
- no-export
41-
ipAddressPools:
42-
- default
39+
addresses:
40+
- 192.168.1.240-192.168.1.250
4341
---
4442
apiVersion: metallb.io/v1beta1
45-
kind: IPAddressPool
43+
kind: BGPAdvertisement
4644
metadata:
47-
name: default
45+
name: example
4846
namespace: metallb-system
4947
spec:
50-
autoAssign: true
48+
communities:
49+
- no-export
50+
ipAddressPools:
51+
- default
5152
EOF
5253
5354
- name: Apply manifests

0 commit comments

Comments
 (0)